0
如果我從鬍鬚腳本和一些偏色呈現HTML,我可以根據所呈現的數據選擇要使用的偏色嗎?用小鬍子選擇偏色
如:
data = {"posts": [
{"type":"text", "body":"I'm text"},
{"type":"image", "uri":"http://placekitten.com/200/300"}
]}
隨着像一個基本模板:
<ul class="posts">
<li>
{{#posts}}
{{> {{type}}}}
{{/posts}}
</li>
</ul>
然後text.mustache
:
<p>{{body}}</p>
而且image.mustache
:
<img src="{{uri}}" />
而且,因爲這會令:
<ul class="posts">
<li>
<p>I'm text</p>
</li>
<li>
<img src="http://placekitten.com/200/300" />
</li>
</ul>
我在這裏失去了一些東西?我應該嘗試這個嗎?
簡單直觀和 - 謝謝:) – 2013-03-13 07:31:09
沒問題,很高興幫助! – bobthecow 2013-03-13 15:48:41