목록분류 전체보기 (74)
메모장
https://github.com/nhn/tui.grid/blob/master/packages/toast-ui.grid/docs/en/data-source.md Using Callbacks grid.on('beforeRequest', function(data) { // Before sending the request }).on('response', function(data) { // When a response has been received regardless of success. const response = data.xhr.response; const responseObj = JSON.parse(response); if (responseObj.result) { ... }..
Edit Custom VM Options...-Dfile.encoding=UTF-8-Dconsole.encoding=UTF-8-Xmx4096mEdit Custom Properties...project.tree.structure.show.url=falsePluginsGitToolBoxMyBatisX// IntelliJ commit 창 안보일 때Settings > Version Control > Commit > Use non-modal commit interface 체크// MyBatis 쿼리 복사 붙여넣기Settings > Editor > General > Smart Keys > Reformat on paste: None or Indent block// 주석, 실행 쿼리 console에서 확인Setting..
git checkout dev git log --pretty=oneline log에서 master에 반영하길 원하는 Commit ID 확인 후 복사(예 abc123) git checkout master git cherry-pick abc123
npm i vee-validate vee-validate.js import {confirmed, email, integer, length, max, min, min_value, numeric, required, regex, double} from 'vee-validate/dist/rules' import {extend, localize} from 'vee-validate' import ko from 'vee-validate/dist/locale/ko.json' localize('ko', ko) extend('required', { ...required, // message: 'This field is required1' }) Company.vue {{ errors[0] }}
현재 재직 중인 회사에서는 서버 호스팅으로 서비스를 운영하고 있다. AWS 같은 클라우드로 서비스를 운영해본 적이 없어 책을 보고 무작정 따라 했다. 해보고 느낀 점은 DB까지 연결해봤는데 아주 간단한 예제였지만 생각보다 세팅이 간단하고 실제로 서비스를 운영하는데 편할 거 같다는 생각이 들었다.