일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- SQL
- mybatis
- 공정능력
- xPlatform
- SSL
- Spring
- vaadin
- es6
- R
- GIT
- window
- table
- 보조정렬
- react
- Android
- SPC
- JavaScript
- plugin
- Python
- Express
- MSSQL
- hadoop
- mapreduce
- IntelliJ
- Kotlin
- tomcat
- NPM
- Eclipse
- Java
- Sqoop
- Today
- Total
목록front-end & ui (119)
DBILITY
Microsoft Windows [Version 10.0.19044.1348] (c) Microsoft Corporation. All rights reserved. C:\Windows\system32>npm -v 6.14.15 C:\Windows\system32>npm i -g npm C:\Users\ROOKIE\AppData\Roaming\npm\npm -> C:\Users\ROOKIE\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js C:\Users\ROOKIE\AppData\Roaming\npm\npx -> C:\Users\ROOKIE\AppData\Roaming\npm\node_modules\npm\bin\npx-cli.js + npm@8.3.0 adde..
Warning이 빨간색으로 뜨면 어쩌자는 건지 초보는 식겁하게 된다. 읽어보니 a tag가 중첩이 되어 나타났다. 상식적으로 봐도 link안에 link는 당연히 문제. 코드를 살펴보니 react-bootstrap을 사용해서 Nav.Link를 썼는데 그 안에 Link태그를 또 썼다. 상위요소는 Nav였고 하위에 Nav.Link가 있는데 그안에 Link를 써서 문제였던 모양이다. 다른 Tag도 잘못된 중첩이 발생하면 이런 경고가 나오겠다. Nav.Link에 as={Link} to={'/url'} 이렇게 하면 된다고 한다.
intellij로 react를 학습하다가 moment package를 설치하고, 그냥 npm audit fix --force를 실행했다가 다름과 같은 오류가 발생하였다. Error: Failed to load config "react-app/jest" to extend from. Referenced from: C:\Dev64\workspace\ex01\package.json Error: Failed to load config "react-app/jest" to extend from. Referenced from: C:\Dev64\workspace\ex01\package.json at configMissingError (C:\Dev64\workspace\ex01\node_modules\eslint\lib\..
var filterString = ""; if( this.divSearch.searchNfield.text.length > 0 ) { filterString = "String(nfield).indexOf('" +this.divSearch.searchNfield+"') >= 0"; if( this.divSearch.searchN2field.text.length > 0 ) { filterString += " && String(n2field).indexOf('" +this.divSearch.searchN2field.text.length+"') >= 0"; } } this.dsNdataset.filter(filterString); 4년여만에 보게 되니 되던 것도 모르겠다. pos로도 되었는데..음.일단 이렇게는..
ES5에서는 Object.create()를 통해 가능하다고 한다. function log(...args) { args.forEach(function (v, i) { console.log(v); }) } var parent = { name: '부모', age: 5000 }; var child = Object.create(parent); var grandChild = Object.create(child); log(child); child.name = '자식'; child.age = 10; log(child); grandChild.name = '손자'; grandChild.age = 2; log(grandChild, grandChild.name); log(grandChild.__proto__);