这是一个付出了很多努力的人:
.picture{:"ng-repeat" => "picture in pictures"}
%h2 {{picture.title}}
%a{ :ng-href => "pictures/{{$index}}"}
%img{:src => "{{picture.url}}"
试图
%a{ :ng-href => "pictures/{{$index}}"}
%img{:src => "{{picture.url}}"
和%a{ :ng-href => "pictures/{{$index}}"}<
%img{:src => "{{picture.url}}"
&gt;
但没有任何作用。在haml文档中找不到(这些是如此糟糕的文档....)我的问题的答案。有谁知道如何把它放入haml?
答案 0 :(得分:0)
我在将图像正确放置在锚点内时遇到了同样的问题,并获得了以下导轨解决方案:
在 view.html.haml 中,嵌入 Rails 助手:
= link_to image_tag('name_of_the_asset', alt: 'title'), root_path
(root_path
正在使用 url_for
助手,但可以更改为“https://www.someexample.com”)