js中.then()怎么返回参数给后端
时间: 2023-04-08 18:03:19 浏览: 251
vue中后端做Excel导出功能返回数据流前端的处理操作
可以通过在.then()中返回一个值或者一个Promise对象来将参数返回给后端。例如:
```
fetch(url)
.then(response => response.json())
.then(data => {
// 处理数据
return processedData; // 返回处理后的数据
})
.then(processedData => {
// 将处理后的数据发送给后端
fetch(apiUrl, {
method: 'POST',
body: JSON.stringify(processedData)
});
});
```
在上面的代码中,第一个.then()中返回的是一个Promise对象,第二个.then()中返回的是处理后的数据。最后一个.then()中将处理后的数据发送给后端。
阅读全文