我想编辑一个res.json,回调的(Promise.then)结果是这样的关联数组,例如“ {category:“ tennis”,data:res.json()}“
那我想得到一个没有Promise类型的东西
我尝试过,但是返回了Promise Type
SELECT t1.first_name, t1.last_name
FROM yourTable t1
LEFT JOIN yourTable t2
ON t1.age > t2.age AND
t2.first_name = 'Pat' AND
t2.last_name = 'Johnson'
WHERE
t2.first_name IS NULL;
答案 0 :(得分:1)
由于fetch
返回了Promise,并且将.json()
(或.text()
等)用于Promise会给您另一个 Promise,因此您需要致电{ {1}}两次;就像在处理初始.then
一样,将另一个.then
放在初始映射函数中。您还应该避免使用explicit promise construction antipattern:
const promise