我是整个 yeoman 和 grunt 场景的新手,我想知道如何将 Jade 模板用于我的主干视图。我下载了yeoman 主干生成器并运行了yo backbone:view email
. 然后生成器创建了这个 email-view.js 文件:
/*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 中设置的东西吗?