骨干编辑模型

时间:2014-03-09 18:47:29

标签: templates backbone.js model field rounding

我试图为我的问题找到一个简单的解决方案,但我做不到。 所以我有这样的模型:

App.Models.Item = Backbone.Model.extend({
    idAttribute: "ItemID",
    defaults:
            {
                ItemID: 1,
                TypeID: 1,
                Name: "",
                Price: 1.00,
                Image: "",
            },
    urlRoot: 'api/items'
});

在我的chtml文件中我有这个:

<div class='wrapper'>  
    <a href="#" data-id ="<%= ItemID %>"><img src="data:image/png;base64,<%= Image %>" class="image"/></a>
    <div class ="price">
        <%= Price %>
    </div>
    <div class='description'>  
        <p class='description_content'><%= Name %></p>  
    </div>  
</div>

我只想编辑每个“价格”字段以获得两位小数。像Math.round这样的东西...但我现在不知道如何用Backbone模型实现这个脚本。感谢。

1 个答案:

答案 0 :(得分:0)

如果服务器返回的价格没有两位小数,您可以在parse方法中修复它。或者您可以在模板中格式化输出:

<%= Price.toFixed(2) %>