innerHTML'每个函数'vs js文件'每个函数'使用underscore.js时

时间:2017-02-27 15:01:20

标签: javascript backbone.js underscore.js underscore.js-templating backbone.js-collections

我想使用underscore.js来获取数组。

这是我的情况。

view.js

views.list = Backbone.View.extend({
      render: function(templateName) {
        var template = _.template(templateName);
        this.$el.html(template({result : this.collection.models}));
        _.each(this.collection.models, function(model){
          console.log(model.get("id"));
        });
        return this;
      }
    });

运行结果_.each(this.collection.models, function(model){console.log(model.get("id"));});

enter image description here

list.html

<div id="columns">
      <% _.each(result, function(model){ %>
        <div id="<% model.get("id") %>" class="content">
          <a href="<% model.get("url") %>">
            <figure>
              <img src="<% model.get("imgSrc") %>">
              <figcaption><% model.get("title") %></figcaption>
            </figure>
        </div>
      <% }); %>
      </div>

enter image description here

我向this.collection.model发送了一个参数作为result参数,所以我认为我在html中编写的上述可执行代码和可执行代码是相同的,但运行结果并不相同。 / p>

有什么区别?

1 个答案:

答案 0 :(得分:2)

您需要在模板中使用输出值的表达式。而不是

<div id="<% model.get("id") %>" class="content">

你需要:

<div id="<%- model.get("id") %>" class="content">

请参阅docs