의외로 간단하네.. 한번 써봐야겠다..
어떤 건 new Promise 해서 ㅎ야 한다는데 그렇게 복잡하게 해야하나 싶긴 하지만..
// Example 2 var promise1 = $.ajax("/myServerScript1"); var promise2 = $.ajax("/myServerScript2");
$.when(promise1, promise2).done(function(xhrObject1, xhrObject2) { // Handle both XHR objects }); promise.done(myShowInfoFunction); promise.fail(myErrorFunction); |
[링크 : https://gist.github.com/steveosoule/6453185]
[링크 : http://han41858.tistory.com/11]
[링크 : http://epthffh.tistory.com/entry/promise-패턴-예제]
'Programming > jquery' 카테고리의 다른 글
jquery ajax json flask (0) | 2019.01.07 |
---|---|
jquery this 버튼 checked (0) | 2019.01.07 |
ajax async와 jquery (0) | 2019.01.04 |
jquery ajaxsetup() (0) | 2018.12.14 |
jquery draggable (0) | 2018.12.09 |