我是JS的新手,为什么向控制台记录此日志1总是第一个?
function(){
fetch("https://jsonplaceholder.typicode.com/todos/1")
.then(function (response) {
response.text().then(function (responseText) {
console.log(responseText);
});
});
console.log(1);
我也尝试着等待。
仅在获取后如何将此代码更改为登录到控制台的日志1 没有将日志1放入提取中?