設定: Polymer 1.0 を使用。dom-repeat の内部には select タグがあり、この内部には、配列からリストしたいいくつかのオプションがあります。
問題: Chrome ベースのブラウザーでは問題なく動作しますが、IE、Safari、または Firefox (ここで私の問題を参照してください: http://i.imgur.com/Eg0T2bq.png?1 ) では、2 番目のテンプレート内には何もありません。単一のオプション。
出典:このコードを使用:
<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>
どんな助けでも大歓迎です!