代码之家  ›  专栏  ›  技术社区  ›  NormX

如何解析JSON响应并在数组中存储值

  •  0
  • NormX  · 技术社区  · 5 年前

    我使用react select async从通过API传递的输入加载选项。我得到一个JSON响应,其中有一个列表,其中有一个字段“FullName”,我试图遍历JSON文件并将所有字段名存储在一个数组中。然后将数组作为选项返回。

    JSON中有一个列表,列表包含结果,每个数字都有一个全名

    JSON响应的格式:

    version:
    status:
    -status code
    -status message
    error:
    result:
    -paginate
    list:
    -0
    --FullName
    

    下面是我的课,我展示了我认为我的问题所在 -----

    class ReactSelectExample extends Component {
      constructor(props, context) {
        super(props, context);
        this.state = {
            selectedOption: {}
        }
      }
    
    fetchData = (inputValue, callback) => {
        if (!inputValue) {
          callback([]);
        } else {
            setTimeout(() => {
      fetch("-----API URL----" + inputValue, {
        method: "GET",
      })
      .then((resp) => {
        return resp.json()
      }) 
    ----------------
      .then((data) => {
          const tempArray = [];
         data.forEach((element) => {
                tempArray.push({ label: `${element.fullname}`, value: element.FullName });
         });
         callback(tempArray);   
    ---------------       
      })
      .catch((error) => {
        console.log(error, "catch the hoop")
      });
    });
    }
    }
    
     onSearchChange = (selectedOption) => {
        if (selectedOption) {
    
        this.setState({
            selectedOption
           });
        }
      };
      render() {
          return ( <div>
               <AsyncSelect
                    value={this.state.selectedOption}
                    loadOptions={this.fetchData}
                    placeholder="Admin Name"
                    onChange={(e) => {
                        this.onSearchChange(e);
                    }}
                    defaultOptions={false}
                />
          </div>)
      }
    
    }
    

    当我启动它并搜索时,我看到的只是加载,但没有名为load的选项。错误当我检查页面时,我得到了错误 JSON.parse: unexpected end of data at line 1 of the column 1 of JSON data catch the hoop

    1 回复  |  直到 5 年前
        1
  •  0
  •   NormX    5 年前

    这是CORS的政策问题。因为我使用的api是外部的,并且与我的url不匹配,所以没有看到JSON响应。我改为在后端调用api,因为没有服务器到服务器的CORS。