Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- duckdb
- CSV
- 미츠이 스미토모
- local
- node.js
- PayPayフリマ
- 태국
- pyenv
- 三井住友カード
- javascript
- 방콕
- terraform
- 카마츠루
- PostgreSQL
- 체코
- 뮌헨
- PayPay
- 熱海
- JenkinsFile
- 釜つる
- 아타미
- vba
- 메르페이
- 페이페이
- react.js
- documentdb
- Selenium
- typescript
- 프라하
Archives
- Today
- Total
도쿄사는 외노자
React.js에서의 modal의 cache삭제 본문
cache 삭제를 위해 removeAttr()등을 사용해 보았으나,
괜히 코드가 길어지기도 하고, 자꾸 다른 곳에서도 cache가 남아...
불끄다 시간 다 가겠다 싶더라.
그냥 마음 편하게 eventBind에 modal이 닫힐 때를 추가,
해당 modal의 parent를 비워서 modal 자체를 날려버리도록 하자.
1 2 3 4 5 6 7 8 9 10 | function eventBindModal(param) { return new Promise(function(resolve, reject) { $('#'+param.id).off('hidden.bs.modal').on('hidden.bs.modal', function(e) { $('#' + param.id).parent().empty(); }); resolve(param); }); } | cs |
'Tech > React.js' 카테고리의 다른 글
라벨의 Byte Length에 따른 요소 길이 조정 (0) | 2017.01.23 |
---|---|
React.js에서의 propTypes 복수 지정 (0) | 2017.01.12 |
CSV Download Button (0) | 2016.12.19 |
React.js에서의 PDF파일의 DB저장과 열람 (0) | 2016.10.27 |
HTML5 input type number에서의 maxlength 적용 (0) | 2016.09.21 |