来自Web API的聚合物数据绑定

时间:2018-06-12 11:14:20

标签: html data-binding polymer polymer-1.0

我想从服务器将某些数据绑定到命令上的变量(通过按下按钮)。在服务器上我有一个函数将返回一个JSON对象(这已经过测试,如果我直接打开API链接,我会得到正确的JSON格式)。但是,无论我做什么,变量都保持不变。我有一个按钮和一个表(px-data-table是框架的一部分,应该能够显示JSON格式的数据):

<button id="runPredictionButton">
    <i>Button text</i>
</button>
<px-data-table 
      table-data$="{{data}}"
</px-data-table>
<div class="output"></div>   

我按下按钮并按如下方式定义变量:

  <script>
    Polymer({
      is: 'custom-view',
      properties: {
        data: {
          type: Object,
          notify: true
        }
      },
    ready: function() {
      var self = this;
      this.$.runPredictionButton.addEventListener('click', function() {
          filerootdiv.querySelector('.output').innerHTML = 'Is here';    
          var xhr = new XMLHttpRequest();
          this.data = xhr.open("GET", "API/predict") //as mentioned, API/predict returns a valid JSON
          console.log("This data is:" + this.data);
          this.data = xhr1.send("API/predict","_self")
          console.log("This data is_:" + this.data);
      });
    }
  });      
  </script>

出于某种原因,在控制台上this.data出现undefined这两次我都试图打印它。我错过了什么?如何将API调用中的JSON传递给this.data变量?

1 个答案:

答案 0 :(得分:0)

xhr.send()无法返回您想要的内容。

您需要先学习XmlHttpRequest。这是documentation。还有一些简单的examples

简单地说,您需要在onreadystatechange变量上收听xml。在那里,您将能够从服务器获取数据。

另外,为什么使用addEventListener。您只需设置on-click

即可
<button id="runPredictionButton" on-click="getDataFromServer">
    <i>Button text</i>
</button>

然后你可以定义每次用户点击按钮时调用的javascript函数。

getDataFromServer: function() {
  var xhr = new XMLHttpRequest();
  xhr.open("GET", "API/predict");
  xhr.send("API/predict","_self");
  xhr.onreadystatechange = function() {
   // 4 = data returned
   if(xhr.readyState == 4) {
     // 200 = OK
     if (this.xhttp.status == 200) {
       // get data
       this.data = xhr.responseText;
     }
   }
  }.bind(this);
}