Concat json to promise:如何从 promise pending 中获取 json 对象中的附加键值对

Concat json to promise: How to get additional key value pair in json object from promise pending

我手动将 json 对象连接到一个 promise。下面第一次打印的代码,cosole.log(new_response) 得到了这个,这就是我想要的

Promise { <pending>, a: '123' }

但是第二个打印,cosole.log(data_json_array) 得到了没有键值的 json 对象,a: '123'

我不知道为什么会这样。我希望 json 对象包含键值 a: '123' 例如:

{ 
  key1: "1",
  key2: "2",
  a: "123
}

提前致谢。

Promise.all(somefunction(parameter)).then(function (responses) {

        return Promise.all(responses.map(function (response) {

            new_json = {a: "123"}
            var new_response = Object.assign(response.json(), new_json)
            console.log(new_response)
            return new_response

      }.then(function (data) {

        console.log(data)

    })

一种略有不同的方法可能涉及更新 someFunction 以处理 json() 并处理将数据与提供的 url 合并。这有助于避免嵌套 Promise.all:

function someFunction(parameter) {
  // create array of promises
  return parameter.urls.map((url) =>
    fetch(url)
      // parse JSON
      .then((res) => res.json())
      // Merge data with url property
      .then((data) => ({ ...data, url }))
  );
}

Promise.all(
  someFunction({
    urls: [
      "https://jsonplaceholder.typicode.com/todos/1",
      "https://jsonplaceholder.typicode.com/todos/2",
    ],
  })
).then((data) => console.log(data));

希望对您有所帮助!