(Polymer)无法访问Iron Ajax请求的last-response属性

时间:2015-12-18 19:45:59

标签: javascript json data-binding polymer

我遇到了一些数据绑定问题。我正在尝试使用。

加载JSON文件

我需要访问JSON文件中的值并将它们绑定到我的元素中的属性。

我的请求如下:

  <iron-ajax auto id="xmsprops"
          url="../../xms.json"
          handle-as="json"
          method="GET"
          on-response="onResponse"
          last-response="{{responseData}}"></iron-ajax>

根据开发工具返回所有内容并显示数据,但我似乎无法访问此数据。目的不是使用dom-repeat模板,我只需要在几个点上使用数据。

This is the structure of my JSON file

我很确定我过去有这个工作,但似乎无法找到代码,任何帮助都将不胜感激!

谢谢!

编辑:

    <iron-ajax auto id="xmsprops"
          url="../../xms.json"
          handle-as="json"
          method="GET"
          on-response="onResponse"
          last-response="{{responseData}}"></iron-ajax>


<div>[[responseData.server_url]]</div>

0 个答案:

没有答案