我是新來的整個yeoman和grunt場景,我想知道如何使用Jade模板作爲我的骨幹視圖。我下載了yeoman backbone generator並跑yo backbone:view email
。發電機則創造了這個電子郵件view.js文件:配置骨幹和grunt + yeoman使用玉
/*global define*/
define([
'jquery',
'underscore',
'backbone',
'templates',
], function ($, _, Backbone, JST) {
'use strict';
var EmailView = Backbone.View.extend({
template: JST['app/scripts/templates/email.ejs']
});
return EmailView;
});
隨着空email.ejs文件。有沒有一種方法可以使用玉作爲我的模板引擎?這是我必須在我的Gruntfile中設置的東西嗎?