1

当我想在我的一个 ejs 视图上呈现数据时,我遇到了一个小问题。我将参数发送到视图,但该值未显示在视图中,而是显示为空白。

;(function(namespace, undefined) {
'use strict';

var PageHeader = can.Control({
    defaults: {         
    }
}, {
    'init': function(element, options) {
        var self = this;
        $('body').append( can.view('js/views/header.ejs', {data:  'foo'} ) );
    },
    destroy: function() {
        can.Control.prototype.destroy.call(this);
    }
    /*end of events*/
});
namespace.Controllers = namespace.Controllers || {};
namespace.Controllers.PageHeader = PageHeader; }(this));

//testing view header.ejs
 <div>
      <%= this.data %>
  </div>

视图呈现为空白区域,对象为空。我错过了一些东西,感谢您的帮助!

4

1 回答 1

0

as of can2.0 mustache是默认的视图渲染器,如果您将其添加到您的 can 构建中,则支持 ejs。因此,如果您使用2.0 add EJScan 构建以及在您的 can.view 中包含文件类型(即)可以。view('myfile.ejs', data);

于 2014-04-11T03:08:22.290 回答