일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- MANTIS
- decompiler
- jsp
- MSsql
- SpringSource Tool Suite
- 이클립스
- asp.net
- MS-SQL
- varags
- Maven
- Eclipse
- Bootstrap
- Redirect
- TextBox
- Java
- 자바
- C#
- 안드로이드
- javascript
- Web Service
- 자바스크립트
- 컬럼명
- 웹 서비스
- Apache Lucene
- scrollView
- STS
- Android
- WebView
- 웹뷰
- html
- Today
- 36
- Total
- 552,239
목록전체 글 (284)
bboks.net™
vsCode에서 디렉토리 구조를 변경을 하려고 하는데 Error: EPERM: operation not permitted: rename 오류가 발생하면서 변경이 안되는 현상이 있었음. 구글링을 했는데 npm clean을 하라는 이야기도 있고 했는데도 동일한 현상이 발생. 좀 더 찾아보니 "Angular Language Service" 확장때문이라는 글을 발견, 비활성화를 하고 변경을 하니 적용이 됨. 출처 VS Code - Error: EPERM: operation not permitted
기본 명령어 git submodule update --recursive 초기화되지 않은 하위 모듈 초기화 git submodule update --init --recursive [출처] Git update submodules recursively
Ionic production 빌드 후 잘되던 FileReader의 onload가 안됨 구글링 해보니 나와 같은 현상을 겪은 사람들 발견 아래와 같이 처리 기존코드 const file = event.target.files[0]; const reader = new FileReader(); reader.readAsDataURL(file); reader.onload = () => { console.log(reader.result); }; 수정버전 const file = event.target.files[0]; let FileReader: new() => FileReader = ((window as any).FileReader as any).__zone_symbol__OriginalDelegate; const ..
Ionic 버전이 6.15.x에서 6.16.x으로 업그레이드 되면서 capacitor 버전도 2.x에서 3.x로 올라갔다. Ionic 6.15.x를 이용해서 Android platform을 추가하려고 하니 unknown option ‘–npm-client’ 오류가 발생하면서 추가가 되지 않음..... 구글링하고 Ionic을 최신(6.16.x)으로 변경하니 정상적으로 추가가 됨 ionic cap run android -l --external을 이용해 실행하려고 하니 Anroid SDK를 찾지 못한다고 하여 윈도우 환경 변수에 ANDROID_HOME 추가 후 다시 실행 capacitor 2.x에서 실행시 Android Studio가 뜨던 것과 다르게 기기에 바로 설치되어 실행(안드로이드 native 디버깅을..