'Programming > web 관련' 카테고리의 다른 글
edge browser mobile (0) | 2018.11.30 |
---|---|
chrome 보안 무시 (0) | 2018.11.13 |
sso openid oauth (0) | 2018.09.10 |
tinestamp(epoch) to utc / localtime (0) | 2018.09.07 |
li 글자 수직정렬하기 (0) | 2018.08.30 |
edge browser mobile (0) | 2018.11.30 |
---|---|
chrome 보안 무시 (0) | 2018.11.13 |
sso openid oauth (0) | 2018.09.10 |
tinestamp(epoch) to utc / localtime (0) | 2018.09.07 |
li 글자 수직정렬하기 (0) | 2018.08.30 |
body에 json으로 값을 넘길 경우 키가 없는 것이 대한 대책
undefined로 비교하려고 했는데 아래의 방법이 정석일 듯
// CHECK REQ VALIDITY if(!req.body["password"] || !req.body["name"]){ result["success"] = 0; result["error"] = "invalid request"; res.json(result); return; } |
[링크 : https://velopert.com/332]
파라미터로 넘길경우 값이 없는 것에 대한 대책
app.get('/users/:id', (req, res) => { const id = parseInt(req.params.id, 10); if (!id) { return res.status(400).json({error: 'Incorrect id'}); } }); |
[링크 : http://webframeworks.kr/tutorials/nodejs/api-server-by-nodejs-03/]
npm 특정 버전의 모듈 설치하기 (0) | 2018.11.07 |
---|---|
axios 여러개의 요청을 묶어서 하기 (0) | 2018.11.07 |
curl jwt (0) | 2018.10.26 |
node-rtsp-stream 과 node-rtsp-stream-es6 차이 (0) | 2018.10.24 |
node.js undefined 확인하기 (0) | 2018.10.22 |
표의 특정 라인으로 이동하기
특절 라인에 대해서 length로 받고 윈도우의 scroll로 직접 이동..
이런걸 써서.. 페이지 이동시 딱딱 끊어지게 하는건가?
var w = $(window); var row = $('#tableid').find('tr').eq( line ); if (row.length){ w.scrollTop( row.offset().top - (w.height()/2) ); } |
[링크 : https://stackoverflow.com/questions/7852986/javascript-scroll-to-nth-row-in-a-table]
jquery 셀렉터 - 특정 문장으로 시작하는 id 찾기 (0) | 2018.11.07 |
---|---|
jquery prepend (0) | 2018.11.06 |
jquery eq() get() 차이 (0) | 2018.11.05 |
jquery selector와 document.getElementById 차이 (0) | 2018.11.05 |
jquery trigger() (0) | 2018.10.25 |
리사이즈 알고리즘 멀 쓸지 모르겠지만 품질 저하가 너무 심한듯..
그런 이유로 다단계로 축소해서 복사하라는 답변이.. ㄷㄷ
[링크 : https://stackoverflow.com/questions/28498014/canvas-drawimage-poor-quality]
[링크 : https://stackoverflow.com/questions/18922880/html5-canvas-resize-downscale-image-high-quality]
js str2ip (0) | 2018.11.07 |
---|---|
자바 스크립트 중복 제거된 배열 얻기(집합) (0) | 2018.11.06 |
자바스크립트 절대값 abs() (0) | 2018.11.05 |
html canvas 보이는 크기와 실제 크기 다르게 설정하기 (0) | 2018.11.02 |
js array keys(),values() (0) | 2018.10.31 |
간간히 이야기 나오던 녀석이긴 한데
기사가 뒷북인가.. 아니면 다른 변동사항이 있어서 다시 나온걸까?
[링크 : https://news.v.daum.net/v/20181105075205312]
아무튼.. 국내 JSP나 spring 으로 된 녀석들도 영향을 받을지 모르겠네?
jar 만들기 export (0) | 2019.01.03 |
---|---|
Java SE 8 설치해보려고 했더니.. (2) | 2019.01.03 |
자바 임베디드 JRE 라이센스? (0) | 2015.05.12 |
predefined annotation /java (0) | 2014.06.27 |
JUnit tutorial (0) | 2014.06.27 |
get은 DOM 객체를 받는다면
eq는 jquery 객체를 받는 차이가 있다.
그래서 이전에.. canvas를 얻었을때 width나 scrollwidth 같은게
jquery 통해서 획득한 녀석은 받아내질 못했던 것으로 보인다.
Retrieve the DOM elements matched by the jQuery object. |
[링크 : https://api.jquery.com/get/]
Reduce the set of matched elements to the one at the specified index. |
[링크 : https://api.jquery.com/eq/]
[링크 : http://www.jquerybyexample.net/2013/04/jquery-difference-between-eq-and-get-method.html]
[링크 : https://fronteer.kr/bbs/view/250]
jquery prepend (0) | 2018.11.06 |
---|---|
jquery를 이용하여 특정 테이블의 열로 이동하기 (0) | 2018.11.06 |
jquery selector와 document.getElementById 차이 (0) | 2018.11.05 |
jquery trigger() (0) | 2018.10.25 |
jqeury ajax 수행 완료 기다리기 (0) | 2018.10.23 |
jquery 의 셀렉터로 잡은 녀석과
document.getElementById 로 잡은 녀석이 접근 가능한 내용이 다른데
원인은 jquery는 jquery에서 만든 object를 사용하고
document.getElementById 은 Object를 사용하기 때문
즉, 같은 객체가 아니기에 접근 가능한 항목이 다르다~
[링크 : https://www.simonewebdesign.it/difference-between-getelementbyid-jquery/]
[링크 : https://www.quora.com/What-are-the-differences-between-foo-and-document-getElementById-foo]
[링크 : https://api.jquery.com/get/]
jquery를 이용하여 특정 테이블의 열로 이동하기 (0) | 2018.11.06 |
---|---|
jquery eq() get() 차이 (0) | 2018.11.05 |
jquery trigger() (0) | 2018.10.25 |
jqeury ajax 수행 완료 기다리기 (0) | 2018.10.23 |
jquery ajax data, header (0) | 2018.10.23 |
Math.abs() 에 존재한다.
[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/abs]
자바 스크립트 중복 제거된 배열 얻기(집합) (0) | 2018.11.06 |
---|---|
canvas 이미지 품질 저하 (0) | 2018.11.06 |
html canvas 보이는 크기와 실제 크기 다르게 설정하기 (0) | 2018.11.02 |
js array keys(),values() (0) | 2018.10.31 |
js eval (0) | 2018.10.30 |
음.. 해보려는데 잘 안된다?
먼저 CSS를 통해서 사이즈가 정해져 있는데
canvas.width로 하고 이미지를 써올려 보니 커진다.. -_-
var canvas = document.getElementById("canvas"), ctx = canvas.getContext("2d"); canvas.width = 600; canvas.height = 300; and then change its displayed size using css #canvas{ width: 300px; height: 150px; } |
[링크 : https://stackoverflow.com/questions/9742131/scaling-canvas-element-with-static-resolution]
[링크 : https://www.html5canvastutorials.com/advanced/html5-canvas-transform-scale-tutorial/]
[링크 : https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/scale]
canvas 이미지 품질 저하 (0) | 2018.11.06 |
---|---|
자바스크립트 절대값 abs() (0) | 2018.11.05 |
js array keys(),values() (0) | 2018.10.31 |
js eval (0) | 2018.10.30 |
js split \n ' ' (0) | 2018.10.26 |
angular에서 proxy 돌리는 법 검색중..
[링크 : http://www.projectcodify.com/angular-set-base-url-dynamically]
[링크 : https://itnext.io/angular-cli-proxy-configuration-4311acec9d6f]
[링크 : https://juristr.com/blog/2016/11/configure-proxy-api-angular-cli/]
[링크 : https://github.com/angular/angular-cli/blob/master/docs/documentation/stories/proxy.md]
angular 빌드 최적화(?) (0) | 2019.03.18 |
---|---|
angular with reverse proxy (0) | 2019.03.18 |
angular4 ie11 호환성 설정 (0) | 2019.02.18 |
vscode 및 angular.js 셋팅.. (0) | 2018.08.08 |