我试图在 Backbone.js 视图页面中显示图像。
我的 show_view.js.coffee 是
Myapp.Views.Checklists ||= {}
class Myapp.Views.Checklists.ShowView extends Backbone.View
template: JST["backbone/templates/checklists/show"]
render: ->
@$el.html(@template(@model.toJSON() ))
return this
我的 show.jst.ejs 文件是
<p>
<b>Title:</b>
<%= title %>
</p>
<p>
<img src="<%= how_to_show_photo_url %>" alt="No image">
</p>
<a href="#/index">Back</a>
我正在使用回形针宝石。我尝试在图像标签中使用 <%= photo.url %> 但它不起作用。如何在图像标签中显示照片?