jQuery없이 네티브자바스크립트로 서버에 요청보내기 7 - JSONP
JSONP(JavaScript Object Notation with Padding) 에 대해서는 개발자분들 잘 알고 계시리라 봅니다.
사실 JSONP를 심중히 써야 합니다.
jQuery
[code]
$.ajax('http://jsonp-aware-endpoint.com/user', {
jsonp: 'callback',
dataType: 'jsonp',
data: {
id: 123
}
}).then(function(response) {
// handle requested data from server
});
[/code]
네티브자바스크립트
[code]
window.myJsonpCallback = function(data) {
// handle requested data from server
};
var scriptEl = document.createElement('script');
scriptEl.setAttribute('src',
'http://jsonp-aware-endpoint.com/user?callback=myJsonpCallback&id=123');
document.body.appendChild(scriptEl);
[/code]
이시간으로 jquery에 대동한 네티브자바스크립트의 코드들을 끝냈습니다.
마지막까지 보아주신 분들께 감사를 드립니다.
댓글 5개
2년 전
감사합니다
swallow
2년 전
@식물집사 첫 분 감사합니다.
ohjiyou
2년 전
감사합니다!
2년 전
감사합니다. 中国人热爱鸦片。
조선족처단
2년 전
sir에 불법사이트 만들던 조선족이 등장했다면서요?
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4856 | PHP | 7년 전 | 5731 | ||
| 4855 | jQuery | 7년 전 | 3235 | ||
| 4854 | jQuery | 7년 전 | 2226 | ||
| 4853 | jQuery | 7년 전 | 2827 | ||
| 4852 | MySQL | 7년 전 | 2993 | ||
| 4851 | jQuery | 7년 전 | 2339 | ||
| 4850 | jQuery | 7년 전 | 2569 | ||
| 4849 | jQuery | 7년 전 | 4308 | ||
| 4848 | PHP |
|
7년 전 | 4246 | |
| 4847 | jQuery | 7년 전 | 4019 | ||
| 4846 | jQuery | 7년 전 | 2631 | ||
| 4845 | jQuery | 7년 전 | 2151 | ||
| 4844 | jQuery | 7년 전 | 2300 | ||
| 4843 | jQuery | 7년 전 | 3054 | ||
| 4842 | jQuery | 7년 전 | 2898 | ||
| 4841 | jQuery | 7년 전 | 2229 | ||
| 4840 | jQuery | 7년 전 | 1567 | ||
| 4839 | jQuery | 7년 전 | 2467 | ||
| 4838 | jQuery |
이에스씨코리아
|
7년 전 | 2314 | |
| 4837 | jQuery | 7년 전 | 2162 | ||
| 4836 | jQuery | 7년 전 | 2087 | ||
| 4835 | jQuery | 7년 전 | 1821 | ||
| 4834 | jQuery | 7년 전 | 1865 | ||
| 4833 | jQuery | 7년 전 | 1993 | ||
| 4832 | jQuery | 7년 전 | 2184 | ||
| 4831 | jQuery | 7년 전 | 2364 | ||
| 4830 | jQuery | 7년 전 | 2630 | ||
| 4829 | jQuery | 7년 전 | 1802 | ||
| 4828 | jQuery | 8년 전 | 2745 | ||
| 4827 | jQuery | 8년 전 | 2285 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기