我有一个fetch语句,必须返回一个“options”对象。
这是我构建的陈述。
const task = fetch('/api/SelectData/QuerySuburbs' + queryString, {
method: 'GET',
headers: headers,
})
.then(handleErrors)
.then(response => response.json())
.then(response => {options: response}))
我知道这是不正确的,而且我在选项名称上收到错误,说它是“未使用的标签”
我想从这个包含返回响应的“选项”对象返回。我如何构造语法,以便当它返回“task”时,就像“options:response”一样?