0

设置:使用 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>

任何帮助表示赞赏!

4

0 回答 0