0

这是一个付出了很多努力的人:

 .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}}">

但没有任何效果。在 haml 文档中找不到(这些文档太糟糕了......)回答我的问题。有谁知道如何把里面放在haml中?

4

1 回答 1

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”)

于 2021-01-21T16:25:57.933 回答