簡體   English   中英

HAML link_to不可點擊

[英]HAML link_to is not clickable

我對haml很陌生,我需要它來進行Rails項目。 我不明白為什么這段代碼在列標題中沒有提供可點擊的鏈接。 例如:

  %table#movies
    %thread
       %tr
         %th <%= link_to "Name", :sort => "name" %>
         %th Year
         %th Rating

等等...

它顯示的只是我寫的內容的純文本,而不是“名稱”列中的鏈接。 這可能是一個非常愚蠢的問題,但是我可以在任何地方找到解決方案,對不起

或者,如果有一種方法可以在簡單的html'a'標簽內發送:sort參數,請告訴我。 謝謝。

如果要將rails輸出追加到html標簽,則必須使用其他語法( http://haml.info/docs/yardoc/file.REFERENCE.html#inserting_ruby_

更改

%th <%= link_to "Name", :sort => "name" %>

%th= link_to "Name", :sort => "name"

試試這個

%th=link_to "Name", "#" ,:sort => "name"

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM