作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这就是我想做的:
response: string;
sendCreateInvoice(invoice, job){
let url = 'assets/php/myScript.php';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
this.response = this.responseText;
};
};
xmlhttp.open('POST', url, true);
xmlhttp.send(invoice);
}
所以我认为我需要使用 .bind(this)
但当我这样做时,我似乎无法再访问 this.responseText
。我尝试过这样的:
response: string;
sendCreateInvoice(invoice, job){
let url = 'assets/php/myScript.php';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
this.response = this.responseText;
};
}.bind(this);
xmlhttp.open('POST', url, true);
xmlhttp.send(invoice);
}
我尝试了 this.xmlhttp.responseText
和 xmlhttp.responseText
但没有运气。我哪里出错了?如何将 responseText
保存到 response
?
==================
工作代码:
response: string;
sendCreateInvoice(){
let url = 'assets/php/myScript.php';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = () => {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
this.response = xmlhttp..responseText;
};
};
xmlhttp.open('POST', url, true);
xmlhttp.send(invoice);
}
最佳答案
您可以使用xmlhttp
来引用XMLHttpRequest
对象。
对 open()
和 send()
的调用需要在回调函数之外。
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
this.response = xmlhttp.responseText;
};
}.bind(this);
此外,您还可以使用箭头函数来代替 .bind(this)
。
xmlhttp.onreadystatechange = () => {
if (this.readyState == 4 && this.status == 200) {
this.response = xmlhttp.responseText;
};
};
xmlhttp.open('POST', url, true);
xmlhttp.send(invoice);
箭头函数将 this
视为普通的词法变量。
关于javascript - 如何在 Javascript 中使用 .bind 时获取 XMLHttpRequest 响应文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43288740/
我是一名优秀的程序员,十分优秀!