我有一段时间试图使用xhr.responseText验证mongo数据库中是否已存在表单条目。我正在创建一个POST请求,并将this.body设置为一个易于解析的字符串" ERROR"或者" SUCCESS"。
但是,我无法以通常能够使用字符串的任何方式使用xhr.responseText,即使typeof
显示它是一个字符串
以下是处理请求的api.js。我通过将this.body
设置为相关的字符串来设置xhr.responseText。
router.post('/edit', function *(req, res, next) {
console.log(this.request.body);
let {url, links} = this.request.body
let obj = yield linkrSchema.findOne({urlExt: url})
//if that entry already exists
if (obj !== null){
this.body = "ERROR";
}
else{
this.body = "SUCCESS";
linkrSchema.createLinkr(url, 'testuser', links, function(err, linkr){
console.log(err, linkr);
});
}
})
以下是我的Edit.js的相关部分,其中发出了POST请求。
else{
var xhr = new XMLHttpRequest(); // new HttpRequest instance
xhr.open("POST", "/edit");
xhr.addEventListener("load", e => {
console.log(xhr.responseText)
});
xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
console.log(xhr.responseText === "ERROR"); //false
console.log(xhr.responseText); //ERROR
var res = xhr.responseText.match(/ERROR/); //null
alert(res)
if (xhr.responseText === "ERROR") { //never gets here :(
alert(xhr.responseText);
}
else{
xhr.send(JSON.stringify(this.state));
console.log(this.state)
window.location.href = "/" + this.state.url;
}
}