我制作了一个搜索附近药店的网络应用程序。这些位置存储在 Apigee 的数据集合中。
(静态)谷歌地图的更新没有问题,但不幸的是,将检索到的数据放入适当的温泉 ui 列表(ons-list)中。
使用的代码片段:
<ons-list class="list" id="list" data-role="listview">
</ons-list>
$('#list').bind('pageinit', function() {
$('#list').listview('refresh');
});
$('<ons-list-item class="list__item--tappable list__item__line-height
modifier="chevron">'+label+' - '+store.get('name')+'</ons-list-item>').appendTo("#list");
目前我的结果集放在一行中。从 apigee 获取数据后的来源:
<ons-list class="list ons-list-inner" id="list" data-role="listview">
<ons-list-item class="list__item--tappable list__item__line-height" modifier="chevron">Pharmacy 1</ons-list-item>
<ons-list-item class="list__item--tappable list__item__line-height" modifier="chevron">Pharmacy 2</ons-list-item>
</ons-list>
如果我把它放在静态中,最后陈述的结果看起来很好。
所以...这里出了什么问题?
预先感谢您的帮助!