0

虽然我想出了如何从数组中获取所有元素,但我一直在尝试获取属于第一个元素的元素。我正在使用 Backbone.js 并尝试编辑我的一个模板。我得到的曲目信息来自一个 JSON 文件。我可以在我的 HTML 文件中执行此操作,还是必须编辑我的 .js 文件?

HTML:

    <script type="text/template" id="lesson-template">
         <span class="lesson-title"><%= title %></span>
         <select class="sel">
            <% _.each(tracks, function(track) { %> //this lets me loop through each of them
              <option value = "<%= track.text %>" ><%= track.title %></option>
          <% }); %>        
          </select>
//Now I want to figure out a way to just get the track.text of the first track here and put it in tracktext! 
          <p id="tracktext">Hello World!</p>
        </script>
4

1 回答 1

1
<p id="tracktext"><%=  tracks[0].text %></p>

您似乎没有在这里使用主干集合或模型。这可能只是关于 javascript 和下划线模板的问题吗?

于 2013-10-06T19:21:35.580 回答