我想在迭代加载表格单元格值时调用searchByID():
这是我已经拥有的内容,我想搜索数据库并返回ID的值。 (这是由我的searchByID()完成的)我只关心它是如何呈现的
代码段:
<template id="course-table-rows-template" repeat="{{item in response.entries}}">
<tr>
<td>
<a href="/#/course-details?lo_id={{item.id}}">{{item.id}}</a>
<form is="ajax-form" action="/add_to_wishlist?course_id={{item.id}}" method="get" id="add-course">
<button id="wishlist_add_button" on-click="{{handleWishlistClick}}">+ Wishlist</button>
</form>
</td>
<td>{{item.title}}</td>
<td>{{item.description}}</td>
<!--{{item.primary_category_id}}-->
<td>
<form is=""ajax-form" action="> How do I call the searchByID on load? I dont want to create a button and do an on click</form>
</td>
<td>{{item.primary_subcategory_id}}</td>
</tr>
</template>
我想要做什么:使用item.primary_subcategory_id并查询数据库,并将该值放入。 LMK如果您需要更多代码进行解释。
答案 0 :(得分:0)
您可以收听 domReady 事件。如果所有dom元素都准备好查询,它将被触发。有关Polymer事件的更多信息,您可以在https://www.polymer-project.org/0.5/docs/polymer/polymer.html#lifecyclemethods
查看