gpt4 book ai didi

javascript - Coffeescript Promise 与 Jquery Post

转载 作者:行者123 更新时间:2023-11-30 13:00:02 28 4
gpt4 key购买 nike

我有一个 emberjs Controller 负责将用户注册表单发送到我的服务器。这在大多数情况下工作正常,但我正在尝试利用 promise ,以便我可以进行一些错误检查、重定向等。

sendRegistration: () ->
$.post('/api/v1/users',
user:
email: @email,
password: @password,
password_confirmation: @passwordConfirmation
).then (response) ->
alert('Hi!')

这个工作或多或少是正确的,因为帖子被发送到服务器,并且服务器以适当的状态代码响应,但是 then 永远不会执行,大概是因为帖子的结果被返回了。我的 coffeescript 是否遗漏了什么?

最佳答案

我猜想使用 jQuery 的延迟对象你应该像这样定义你的发布请求:

sendRegistration: () ->
$.post('/api/v1/users',
user: '',
email: @email,
password: @password,
password_confirmation: @passwordConfirmation
)
.done (response) ->
alert('Hi!')
.fail (jqHXR, textStatus) ->
alert('error')

来自 docs 的注释:

As of jQuery 1.5, the fail and done, and, as of jQuery 1.6, always callback hooks are first-in, first-out managed queues, allowing for more than one callback for each hook. See Deferred object methods.

希望对您有所帮助。

关于javascript - Coffeescript Promise 与 Jquery Post,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17554854/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com