嵌套聚合物模板选择问题

时间:2015-11-13 14:58:48

标签: javascript templates polymer polymer-1.0 google-web-component

设置:使用Polymer 1.0。 在dom-repeat内部有一个select标签,在其中,有几个选项,我想从一个数组中列出。

问题:它在基于Chrome的浏览器上运行得非常好,但在IE,Safari或Firefox中(请参阅我的问题:http://i.imgur.com/Eg0T2bq.png?1)内部没有任何内容第二个模板,不是一个选项。

来源:使用此代码:

<template>
    <ul>
        <template is="dom-repeat" items="{{actionattributes}}" as="actionattribute" index-as="attributeIndex">
            <li>
                <label>
                    ...
                </label>
                <label class="type-container">
                    <em>Type:</em>
                    <select name="{{generateActionFieldName(attributeIndex, 'type')}}" disabled="{{actionattribute.factory}}">
                        <template is="dom-repeat" items="[[type_list]]" as="attributeType">
                            <option value="{{attributeType}}" selected="{{isSelectedAttribute(attributeType, actionattribute)}}">{{attributeType}}</option>
                        </template>
                    </select>
                </label>
                <label >
                    ...
                </label>
                <button>
                    ...
                </button>
            </li>
        </template>
    </ul>
</template>

任何帮助表示赞赏!

0 个答案:

没有答案