问题1:promise实现ajax请求的时候 resolve里面的参数 this.response 是什么,
ajax里面好像没有这个属性,是不是应该是respinseText
var getJSON = function(url) {
var promise = new Promise(function(resolve, reject){
var client = new XMLHttpRequest();
client.open("GET", url);
client.onreadystatechange = handler;
client.responseType = "json";
client.setRequestHeader("Accept", "application/json");
client.send();
function handler() {
if (this.readyState !== 4) {
return;
}
if (this.status === 200) {
resolve(this.response); //这里this.response
} else {
reject(new Error(this.statusText));
}
};
});
问题2.
settimeout 第3个参数实际上是第一个参数的函数的参数,而 resolve又是能传递参数的
function timeout(ms) {
return new Promise((resolve, reject) => {
setTimeout(resolve, ms, 'done'); //改成 setTimeout(resolve('done'), ms);
});
}
timeout(5000).then((value) => {
console.log(value);
});
书上的例子我稍微改一改,为什么就不能异步执行了