registerKeystroke() {
var username = $('#id_username').val();
var password = $('#id_password').val();
return this._sendRequest('/pc_data/', {'username': username, 'password': password})
.then(res1 => {
console.log('res1:' + res1);
this._change_status(res.toString());
return res1
})
.then(
this._sendRequest('/server/register_keystroke/', this._getRequestData())
.then(res3 => {
this._clearInputsTimestamps();
console.log('res3:' + res3);
return res3;
})
)
_sendRequest(url, data) {
return new Promise((resolve) => {
$.post(
url,
JSON.stringify(data),
(data) => resolve(data),
'json'
);
})
}
}
我想要 return 出 res3,给更后面的 then 函数用,可是现在 return 出来的是 true 值,res3 的记录值是 message,怎样才可以 return 出 res3 呢?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.