gpt4 book ai didi

javascript - 在主干js中访问返回值

转载 作者:行者123 更新时间:2023-11-30 18:13:33 26 4
gpt4 key购买 nike

在我的主干代码中,我将返回值获取到一个变量,现在我必须使用该变量访问一个特定值。

服务器返回值如下

Object {
readyState = 4,
responseText = '{"analysis":{"created_a...s"],"status":"active"}}',
status = 201,
more...
}

这就是我在控制台中得到上述结果的方式

attributes = {
locale: $action.find('#locale').val(),
title: $action.find('#title').val(),
category: $action.find('#category').val(),
status: $action.find('#analysis_status').val(),
matrix: $action.find('#analysis_matrix').val(),
predefined_barriers: barrierTexts,
features: featureTexts
}

b = this.model.save(attributes);

我想要的是访问responseText

如何使用变量 b 访问它,或者有没有其他好的方法来访问它

谢谢

最佳答案

save method返回 jqXHR object由内部使用的 jQuery.ajax 返回, 所以你可以像往常一样向它添加一个回调:

this.model.save(attributes).done(function(data) {
// you could use
this.responseText
// but you probably will use the already parsed JSON
data
});

关于javascript - 在主干js中访问返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13945314/

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