Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 ajax 发布帖子时遇到问题。我有一个“成功”和一个“错误”功能。不幸的是,我的帖子从来没有达到任何一个功能,它保持在“发布”状态。我相信这是一个网络问题,如果是这样,我该怎么做才能抓住它并尝试再次发布。我不想通过多次发布来创建多条记录。
像这个例子一样创建一个“always”回调函数:
$.ajax( "example.php" ) .done(function() { alert( "success" ); }) .fail(function() { alert( "error" ); }) .always(function() { alert( "complete" ); });