0
我檢查了關於此主題的其他帖子,但沒有一個符合我的問題。這裏是我的模板代碼:ICanHaz未檢測到模板
<script id ="postingcell" type="text/html">
<li class="postinglistcell">
<div class = "postinfowrapper">
<table class="centermargins">
<tr>
<td>
<div class="posttitle">{{Title}}</div>
</td>
</tr>
</table>
</div>
</li>
</script>
這裏就是我所說的ICH代碼:
$(document).ready(function() {
var p = ich["postingcell"](thisobj);
});
我能得到一個錯誤,告訴我,ich["postingcell"]
沒有定義,但它一直在上面的腳本標籤中。有沒有人知道我在這裏做錯了什麼?
看起來你有id'和'= 「postingcell」''之間的空間。這是完全相同的代碼嗎? –
它是...但只要它在字符串右邊,空間不應該重要? – dopatraman