在coffeescript中检查ajax请求中的失败

时间:2016-01-09 08:12:42

标签: javascript jquery ajax coffeescript

我想在coffeescript语法中使用.post jquery方法来发布帖子请求。 coffeescript文档提供了添加成功回调的示例,但没有提供添加错误回调的语法。我怎么能这样做?

$.post '/',
    userName: 'John Doe'
    favoriteFlavor: 'Mint'
    (data) -> $('body').append "Successfully posted to the page."
    # Callback for error case?

1 个答案:

答案 0 :(得分:1)

You should check jQuery.post() APIjQuery.ajax() API什么会让你在方法选项中定义两个回调。

$.post('/',
  userName: 'John Doe'
  favoriteFlavor: 'Mint'
  (data) -> $('body').append "Successfully posted to the page."
).fail((data) -> "Error handler")