본문 바로가기

기타54

Access-Control-Allow-Origin Access-Control-Allow-OriginASP에서 SSL설치후 Access-Control-Allow-Origin 발생 2018. 11. 2.
HTML CSS PRINT영역 여러가지 테스트해봤는데해당 경우가 제일 잘작동 하였다.http://jsfiddle.net/destan/e9gjwodL/ --HTML Page 1/2 Page 2/2 CSS body { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #FAFAFA; font: 12pt "Tahoma"; } * { box-sizing: border-box; -moz-box-sizing: border-box; } .page { width: 210mm; min-height: 297mm; padding: 20mm; margin: 10mm auto; border: 1px #D3D3D3 solid; border-radius: 5px; background: wh.. 2018. 11. 1.
CANVAS를 이용한 모바일에서 사인처리 CANVAS를 이용한 모바일에서 사인처리1. 참고가 되었던 유튜브https://www.youtube.com/watch?v=P6SLf6jmXS02. 캔버스에 관한 튜토리얼정보https://www.html5canvastutorials.com/3. 파일전송을위한 Blobhttps://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlobhttps://stackoverflow.com/questions/18253378/javascript-blob-upload-with-formdata --------------터치이벤트 다른걸로 처리가능한데 framework7에 있는 돔조작부분을 활용했다. ---- ---이것저것 짬뽕해서 기능구현쪽으로만 적용해놨는데실제.. 2018. 10. 24.
Chr(30)의 사용 아스키 코드표에서 30의 경우 record separator로 사용된다.쉽게 생각하면 눈에 보이지 않는 문자라고 보면되겠다.Chr(30)http://www.asciitable.com/ 엑셀 출력을 작성할때00123123 의형태로 출력된다면00의 값이 사라지게된다. 그때 앞쪽에 레코드 세퍼레이터를 넣어서 사라지는걸 방지한다. 2018. 10. 10.
OBJECT RUNAT=server http://www.webmadang.net/develop/develop.do?action=read&boardid=1001&page=2&seq=69 2018. 9. 6.
ADODB Type Library http://taeyo.net/Columns/View.aspx?SEQ=238&PSEQ=16&IDX=7 https://msdn.microsoft.com/en-us/library/ms525469(v=vs.90).aspx http://dooji.tistory.com/56 음 신입 설명용 2018. 9. 6.
WindowTimers https://developer.mozilla.org/ko/docs/Web/API/WindowTimers WindowTimers.clearInterval()WindowTimers.setInterval()를 사용하여 반복되는 실행 세트를 취소합니다.WindowTimers.clearTimeout() WindowTimers.setTimeout()를 사용하여 지연된 실행 세트를 취소합니다.WindowTimers.setInterval()주어진 1000분의1초 단위의 시간이 경과할 때마다 실행할 함수를 예약합니다.WindowTimers.setTimeout()지정된 시간 내에 실행할 함수를 예약합니다.-> 타이머가 만료된후 실행된다. 2018. 7. 27.
Array filter https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/filterhttps://www.w3schools.com/jsref/jsref_filter.asphttps://msdn.microsoft.com/ko-kr/library/ff679973(v=vs.94).aspx 배열에서 필터를 통해서 원하는 값을 찾음var users = [ {id:1,name:'a'}, {id:2,name:'b'}, {id:3,name:'c'}] const id = 1; users = users.filter((user) => { if(user.id === id){ return true; } });결과값으로는 [ { id: 1, name: .. 2018. 7. 10.
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. Mocha테스트 코드 작성중Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. Timeout 추가로 해결https://mochajs.org/#timeouts describe('a suite of tests', function() { this.timeout(500); it('should take less than 500ms', function(done){ setTimeout(done, 300); }); it('should take less than 500ms as well', function(done){ setTimeout.. 2018. 7. 5.