我尝试使用image_path
将图片放在骨干视图上,如:
<%= image_path('logo.png') %>
但它不起作用。我收到一条错误消息:
Uncaught ReferenceError: image_path is not defined
我不知道如何配置image_path
以便在/assets/images
中进行搜索。
class viaapp.Views.Login extends Backbone.View
template: JST['logins/login_index']
render: (username) ->
@username = username
$(@el).html(@template({user: @username}))
@
<img id="profile-img" class="profile-img-card" src="<%= asset_path ('logo.png') %>" />