我想在coffeescript语法中使用.post jquery方法来发布帖子请求。 coffeescript文档提供了添加成功回调的示例,但没有提供添加错误回调的语法。我怎么能这样做?
$.post '/',
userName: 'John Doe'
favoriteFlavor: 'Mint'
(data) -> $('body').append "Successfully posted to the page."
# Callback for error case?
答案 0 :(得分:1)
You should check jQuery.post() API或jQuery.ajax() API什么会让你在方法选项中定义两个回调。
$.post('/',
userName: 'John Doe'
favoriteFlavor: 'Mint'
(data) -> $('body').append "Successfully posted to the page."
).fail((data) -> "Error handler")