使用react.js从api函数获取json数据

时间:2016-04-11 18:42:37

标签: javascript json api reactjs

如何从apiUrl获取json数据?需要一些帮助来编写函数

changeUrl: function(evt){
        this.setState({
          value: evt.target.value,
          apiUrl: "https://test.holmusk.com/food/search?q=" + evt.target.value
        });
      },

      getJson: function() {

      },

1 个答案:

答案 0 :(得分:2)

您的代码有点令人困惑,因为当我假设您需要调用该URL来获取Json数据时,很难说出为什么要在setState中设置apiURL。评论者提出了使用像Redux这样的库来建立数据检索架构的重点。但是,如果您只想进行普通的Javascript调用,则可以执行以下操作。很难说你的组件状态是否需要Json结果,但是我猜你这么做了,所以我在考虑这个假设的情况下重新安排了代码。

    changeUrl: function(evt){
            getJson(evt.target.value);
    },

    getJson: function(newVal) {
        var request = new XMLHttpRequest();
        request.open('GET', "https://test.holmusk.com/food/search?q=" + newVal, true);
            request.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');    
            //this callback gets called when the server responds to the ajax call            
            request.onreadystatechange = function(){
                if (request.readyState === 4 && request.status === 200){
                    var returnedJson = JSON.parse(request.responseText);
                    //this is where you would want to run setState if you need the returned Json for it.
                    setState({newJson: returnedJson});
                }
                else if (request.readyState === 4 && request.status !== 200){
                    alert('error');
                }           
            };      
            request.send();
    }