0
const formatData = ((els) => {
  console.log("ELS : ", els.data); /* Got Undefined */
  return _.each(els, (el) => ({
    label: el.first_name,
    value: el.id,
  }));
});


const fetchOptions = ((input, callback) => {
  return fetch("http://reqres.in/api/users")
    .then((res) => {
      callback(null,
        {
          options: formatData(res.json())
        }
      )
    }).then((json) => {
      return {options: json};
    });
});

根据此文档,我正在尝试获取数据并将其设置为loadOptions<Select.Async ... />. 正如我上面提到的,我得到Undefined了 els.data。谁能告诉我我做错了什么?

4

1 回答 1

1

res.json()是异步的。它返回一个 Promise,所以在 next 中处理then

const fetchOptions = ((input, callback) => {
  return fetch("http://reqres.in/api/users")
    .then((res) => {
      return res.json();
    }).then((json) => {
      // formatData(json);
    });
});
于 2016-11-04T02:55:26.700 回答