参与逆向工程我今天发现了以下snipet:
<script id="idea" type="text/x-jqote-template">
<![CDATA[
<li data-idea_id="<*= this.id *>" class="voted">
<div class="vote_panel">
<div class="vote_count"><*= this.votes_count *></div>
<span class="vote_action vote">You've already voted</span>
</div>
<div class="idea_details">
<h4 class="title"><*= this.title *> <a href='#' class='toggle_description more details'>Details</a></h4>
<div class="description_metadata_pane" style="display: none;">
<p class="description"><*= this.description *></p>
<p class="metadata">- <*= this.name *> on <*= this.created_at *></p>
</div>
</li>
]]>
</script>
有人可以解释这是如何工作的,以及数据来自哪里(服务器端还是客户端)?