4
我正在開發發送一個數組作爲元素的屬性。如何傳遞數組作爲元素的屬性?
文件形式-list.html
<dom-module id="form-list">
<template>
<div>{{title}} - {{owner}} </div>
<form>
<template is="dom-repeat" items="{{inputAndLabel}}">
<div><label>{{item.tag}} {{owner}}</label><input type="{{item.type}}" value="{{item.defaultValue}}"></div>
</template>
</form>
</template>
<script>
Polymer({
is: 'form-list',
properties: {
owner: {
value:"Mechanical",
},
inputAndLabel: {
type: Array,
value: function() { return []; }
}
},
ready: function() {
this.title = 'Formulario: Usuario';
}
});
</script>
</dom-module>
所以,使用元素並通過inputAndLabel propertie(它是一個數組)是不行的,但主人財產的作品(這是一個字符串)。
<form-list inputAndLabel="[
{defaultValue: '', type:'text', tag: 'Nombre' },
{defaultValue: '', type:'text', tag: 'Apellido' },
{defaultValue: '', type:'text', tag: 'Email' },
{defaultValue: '', type:'text', tag: 'Dirección' }]" owner="Eternal">
</form-list>
如何發送數組作爲自定義元素的屬性?
由於
很多謝謝。它爲我工作。 –
Supersharp, 出於某種原因, 予先分配 「[{ 「默認值」: 「」, 「類型」: 「文本」, 「標籤」: 「農佈雷」}, { 「默認值」: 「」, 「type」:「text」,「tag」:「Apellido」}, {「defaultValue」:「」,「type」:「text」,「tag」:「Email」}, {「defaultValue」 「,」type「:」text「,」tag「:」Dirección「}] , 是否需要將'[{...},...,{...}]'內聯? – hjyanghj
@hjyanghj是的。你不能在html代碼中設置一個變量。作爲一種解決方法,您可以使用setAttribute() – Supersharp