0
我遇到的問題試圖使用下面的流星包:dandv:jquery-rateit。流星JQuery開始評級問題
我使用它作爲票據系統,每個更新都將有一個開始評級。但是,當我有超過1條評論時,第二條總是返回0值。
這裏是我的代碼:
JS:
Template.rating.events({
'click .rateit': function(e){
var rating = $('#rate').rateit('value');
console.log(rating);
Session.set('UpdateId', this._id);
var UpdateId = this._id;
console.log(UpdateId);
/*Meteor.call('saveRate',rating,UpdateId);*/
return false;
}
});
Template.rating.rendered = function() {
this.$('.rateit').rateit();
}
HTML:
<template name="Update">
{{#each Updates}}
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title" align="center">Update</h3>
</div>
<div class="panel-body">
<table class="table">
<tr>
<td width="15%" nowrap align="left">Created By:</td>
<td width="35%" align="left">{{createdBy.username}}</td>
<td width="15%" nowrap align="left">Created At:</td>
<td width="35%" align="left">{{formatDate createdAt}}</td>
<td width="15%" nowrap align="left">Rating:</td>
<td width="35%" align="left">{{> rating}}</td>
</tr>
<tr>
<td colspan="4">{{description}}</td>
</tr>
</table>
</div>
</div>
{{/each}}
</template>
<template name="rating">
<div class="rateit" id="rate"></div>
</template>
現在,當我嘗試進行評分的第二個意見是返回0截圖:http://screencast.com/t/ejaTI98X
無論什麼星星如果我選擇,它總是返回0.我認爲錯誤應該可能在HTML中。
我真的很感激你的幫助。如果您有任何問題,請告訴我。
祝您有美好的一天。
非常感謝你的幫助。問題已修復 – Gova
如果其他人遇到同樣的問題,請將答案標記爲有用(向上箭頭) – Jamgold