16

模板看起来像这样。

<div>
    <H5>Status for your request</H5>
    <table>
    <tbody>
    <tr>
        <th>RequestId</th>
        <th><%=id%></th>
    </tr>
    <tr>
        <th>Email</th>
        <th><%=emailId%></th>
    </tr>       
    <tr>
        <th>Status</th>
        <th><%=status%></th>
    </tr>       
     </tbody>
     </table>
</div>

这是呈现页面的 View Javascript。

window.StatusView = Backbone.View.extend({

initialize:function () {
    console.log('Initializing Status View');
    this.template = _.template(tpl.get('status'));
},

render:function (eventName) {

    $(this.el).html(this.template());
    return this;
},

events: { "click button#status-form-submit" : "getStatus" },

getStatus:function(){

    var requestId = $('input[name=requestId]').val();
    requestId= $.trim( requestId );

    var request  = requests.get( requestId );

    var statusTemplate = _.template(tpl.get('status-display'));
    var statusHtml = statusTemplate( request );
    $('#results-span').html( statusHtml );
}

});

当点击输入时,会读取 requestId 并将状态附加在 id 为“results-span”的 html 元素中。

将 html-template 中的值替换为变量值时会发生故障。

var statusTemplate = _.template(tpl.get('status-display'));
var statusHtml = statusTemplate( request );

渲染失败并出现以下错误。

Uncaught ReferenceError: emailId is not defined
(anonymous function)
_.templateunderscore-1.3.1.js:931
window.StatusView.Backbone.View.extend.getStatusstatus.js:34
jQuery.event.dispatchjquery.js:3242
jQuery.event.add.elemData.handle.eventHandle
4

2 回答 2

23

下划线_.template

将 JavaScript 模板编译为可评估以进行渲染的函数。
[...]

var compiled = _.template("hello: <%= name %>");
compiled({name : 'moe'});
=> "hello: moe"

因此,基本上,您将模板函数交给一个对象,然后模板在该对象内部查找您在模板中使用的值;如果你有这个:

<%= property %>

在您的模板中,您将模板函数称为t(data),然后模板函数将查找data.property.

通常您将视图的模型转换为 JSON 并将该对象交给模板:

render: function (eventName) {
    $(this.el).html(this.template(this.model.toJSON()));
    return this;
}

我不知道你eventName是什么或你打算用它做什么,但你需要得到一个具有这种结构的对象:

data = { id: '...', emailId: '...', status: '...' }

从某处并将其交给模板函数:

var html = this.template(data)

获取一些 HTML 放在页面上。

演示(带有用于说明目的的假模型):http: //jsfiddle.net/ambiguous/hpSpf/

于 2012-05-01T21:04:06.147 回答
3
OptionalExtrasView = Backbone.View.extend({
    initialize: function() {
        this.render();
    },
    render: function() {
        // Get the product id
        //var productid = $( this ).attr( "productid" );
        var data = {name : 'moe'};

        var tmpl = _.template($('#pddorder_optionalextras').html() );
        this.$el.html(tmpl(data));
    }
});

   var search_view = new OptionalExtrasView({ el :     $('.pddorder_optionalextras_div')});

就在body标签之前:

      <script type="text/template" id="pddorder_optionalextras">
   <%= name %>
    </script> 
于 2015-02-08T04:36:01.803 回答