使用Polymer iron-ajax检索JSON子数组

时间:2016-02-10 13:25:11

标签: arrays json ajax polymer polymer-1.0

我正在尝试使用iron-ajax检索JSON文件,以便创建导航手风琴菜单。到目前为止,这读取“顶级”标题很好,但我很难获得返回的子菜单名称。

我想知道我是否需要在nav-head元素中使用嵌套模板dom-repeat,但到目前为止它还没有成功。

JSON示例:

{
 "headers": [
  {
   "name": "Header One",
    "sub": [
     {
      "name": "Sub Heading One"
     },
     {
      "name": "Sub Heading Two"
     }
    ]
   }
  ]
 }

聚合物代码:

<link rel="import" href="../../../bower_components/polymer/polymer.html">
<link rel="import" href="../../../bower_components/iron-ajax/iron-ajax.html">
<link rel="import" href="nav-head.html">
<link rel="import" href="nav-sub.html">

<dom-module id="nav-accordion">
  <template>
    <style include="shared-styles">
    </style>

<iron-ajax auto
      url="../../../api/nav.json"
      handle-as="json"
      last-response="{{ajaxResponse}}"></iron-ajax>

<template is="dom-repeat" items="[[ajaxResponse.headers]]">
  <div class="horizontal-section">
    <nav-head heading=[[item.name]]></nav-head>
  </div>
</template>

</template>

<script>
(function() {
  'use strict';

  Polymer({
    is: 'nav-accordion',

    properties: {
    }

  });
})();

1 个答案:

答案 0 :(得分:2)

这实际上很简单。找到以下代码:

<template is="dom-repeat" items="{{ajaxResponse.headers}}" as="header">
  <div class="horizontal-section">
    <nav-head heading={{header.name}}>
      <template is="dom-repeat" items="{{header.sub}}" as="sub">
        <nav-sub subheading={{sub.name}}></nav-sub>
      </template>
    </nav-head>
  </div>
</template>

要记住的重要事项是使用'header.sub'获取子数组,而不是'ajaxResponse.sub'