admin管理员组文章数量:1350059
According to the polymer docs, an object or array can be iterated over using the repeat
statement in a <template>
:
"expression" can be a simple identifier, a path or a full expression (including Object and Array literals).
After testing, however, it seems as though the repeat statement only works with arrays, and not with objects:
Am I doing something incorrectly?
According to the polymer docs, an object or array can be iterated over using the repeat
statement in a <template>
:
"expression" can be a simple identifier, a path or a full expression (including Object and Array literals).
After testing, however, it seems as though the repeat statement only works with arrays, and not with objects:
http://jsbin./oqotUdE/4/edit
Am I doing something incorrectly?
Share Improve this question asked Mar 5, 2014 at 23:24 bitpshrbitpshr 1,0632 gold badges9 silver badges21 bronze badges2 Answers
Reset to default 7I recently ran into this issue and got around it by using a filter which returns Object.keys(obj)
. Below is a simple example of how to do so (maybe there is a much better way, if so, enlighten me please)...
<template repeat="{{item in obj | getKeys}}">
<span>Key: {{item}}</span>
<span>Value: {{obj[item]}}</span>
</template>
...etc...
<script>
Polymer('my-element', {
// yes i know, instantiate arrays/objects in the created method,
// but this is just an example
obj : {},
// my custom filter function to use in looping objects
getKeys : function(o){
return Object.keys(o);
}
});
</script>
Of course you can get more plex, checking for data types and making sure its an object. Below is a recursive version that loops through infinite nested objects (again, if there is a simpler way, let me know)
<template if="{{obj}}" id="root" bind="{{obj as o}}">
<ul>
<template repeat="{{item in o | getKeys}}">
<li>
<span class="key">{{item}}</span>
<template if="{{o[item] | isNotObject}}">
<span class="value">{{o[item]}}</span>
</template>
<template if="{{o[item] | isObject}}">
<template ref="root" bind="{{o[item] as o}}"></template>
</template>
</li>
</template>
</ul>
</template>
...etc...
<script>
Polymer('object-view', {
obj : {},
getKeys : function(o){
return Object.keys(o);
},
isObject : function(v){
return typeof(v) === "object";
},
isNotObject : function(v){
return typeof(v) !== "object";
}
});
</script>
This certainly works (for me), to loop through objects (and arrays, actually). Although, I'm not pletely happy with the use of Object.keys
. I'll be very encouraged to see support for object iteration soon in polymer.
The docs there are imprecise. The general nature of expressions is explicated but I don't believe it intends to say you can iterate over objects with repeat.
I believe only Arrays are support for iteration at this time, although there is talk of possibly supporting NodeLists also.
本文标签: javascriptPolymerIterating over object in templateStack Overflow
版权声明:本文标题:javascript - Polymer - Iterating over object in template - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743852435a2550257.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论