<dom-module id="geo-comtoolbar">
<template>
<ul class="toolBarWrap" id="toolWrap">
<template is='dom-repeat' items={{toolName}}>
<li tooltype='{{item.tooltype}}'>
<img src="{{item.imgUrl}}">
<span>{{item.tName}}</span>
</li>
</template>
</ul>
</template>
</dom-module>
<script type="text/javascript">
Polymer({
is: 'geo-comtoolbar',
ready: function (){
this.toolName = [
{tName: '平移', imgUrl: 'imgs/maptool/drag.png', tooltype: 'pan'},
{tName: '距离', imgUrl: 'imgs/maptool/distance.png', tooltype: 'calLen'},
{tName: '面积', imgUrl: 'imgs/maptool/area.png', tooltype: 'calArea'}
];
},
});
</script>
刚研究polymer,为每个li绑定tooltype属性,用{{item.tooltype}}解析不了。是不是可以用其他的方式?
我是把repeat item也定义成组件了。
题主有兴趣,可以看下我写的polymer几篇专栏,虽然都比较浅