添加图标路径 - Google Polymer

时间:2015-11-13 13:13:24

标签: polymer polymer-1.0

在我的项目中,我绑定了一份“纸制品”清单。来自JSON数组的元素。 我只想给出图标的名称,而不是与' src' “造纸厂”的财产。我怎样才能做到这一点?是否有可能使用计算属性?提前谢谢。

下面给出了代码片段和JSON格式。

<ul id="actionButtons">
    <template is="dom-repeat" items="[[plugins]]">
        <li>
            <span>
                <paper-fab mini src="[[item.iconSrc]]" id="[[item.id]]" name="[[item.name]]" class$="[[item.cssClass]]"> </paper-fab>
            </span>
        </li>
    </template> </ul>

JSON结构如下所示

plugins:
[
        {
            "id": 1,
            "name": "Image_1",
            "iconSrc": "app/images/icons/pacs_pull.png",
            "cssClass": "white"
        },
        {
            "id": 2,
            "name": "Image_2",
            "iconSrc": "app/images/icons/pacs_push.png",
            "cssClass": "grey"
        },
        {
            "id": 3,
            "name": "Image_3",
            "iconSrc": "app/images/icons/fileBrowser.png",
            "cssClass": "white",
        }
]

1 个答案:

答案 0 :(得分:0)

查看Computed bindings

  <template>
    My name is <span>{{computeFullName(first, last)}}</span>
  </template>

  <script>
    Polymer({
      is: 'x-custom',
      properties: {
        first: String,
        last: String       
      },
      computeFullName: function(first, last) {
        return first + ' ' + last;
      }
      ...
    });
  </script>

</dom-module>

您应该能够将item.iconSrc传递给您计算以将路径附加到图标