0

我有一个 rails 项目,我在其中读取了一个模板文件,在 javascript 控制台中我收到以下错误:

illegal XML character
appointment_show.js?body=1()appoin...?body=1 (line 2)
[Break On This Error] this.JST["appointments/show"] = <%= topic %>; 

这是我正在使用的当前 Backbone 视图:

window.AppointmentView = Backbone.View.extend({
    template: JST["appointments/show"],

    render: function(){
        this.$el.html(this.template(this.model.toJSON()));
        return this;
    }
});

这是我的 app/assets/templates/appointments/show.jst 文件

<%= topic %>
4

1 回答 1

0

我所要做的就是将我的 app/assets/templates/appointments/show.jst 重命名为 show.jst.ejs

于 2012-04-11T01:37:53.167 回答