我正在学习Fetch API,并且想知道以下内容:
&:last-child {
padding-right: 0;
width: 200px;
响应对象是从fetch('someurl')返回的吗?当我说“获取的// The fetch's `then` gets a Response instance back
fetch('someurl')
.then(function(responseObj) {
console.log('status: ', responseObj.status);
});
返回一个Response实例”时,我有些困惑。谢谢!