首页 > Web开发 > 详细

underscore.js定义模板遇到问题:Uncaught TypeError: Cannot read property 'replace' of undefined

时间:2015-03-06 18:36:17      阅读:5439      评论:0      收藏:0      [点我收藏+]

技术分享

代码正确缩进位置如下,

extend "layout"

block ‘content‘,->
   div ->‘nihao‘
   script id:"InvoiceItem",type:"text/template",style:"display: none",->
        div ->"{{price}}"
        div ->"{{quantity}}"
        div ->"{{amount}}"
   coffeescript ->
      $ ->
        invoiceItemModel = new InvoiceItemModel({price:5,quantity:3})
        (new PreviewInvoiceItemView({el:‘body‘,model:invoiceItemModel})).render()

原因:引用了extend "layout"模板以后,要操作当前页面的代码,应该放在当前页面代码的内部,放在外部是访问不到的,所以报错:Uncaught TypeError: Cannot read property ‘replace‘ of undefined

underscore.js定义模板遇到问题:Uncaught TypeError: Cannot read property 'replace' of undefined

原文:http://www.cnblogs.com/greenteaone/p/4318766.html

(1)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!