This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.getJSON('/api/post.json') | |
| .then (response) -> | |
| # do something | |
| response # if you would not return anything, promise would be fulfilled with undefined | |
| .then (response) -> | |
| # do something | |
| undefined # necessary to prevent non-empty function body | |
| .then null, (err) -> | |
| # handle error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| req = $.get('foo.html') | |
| .success (response) -> | |
| do_something() | |
| .error (response) -> | |
| do_something() |
NewerOlder