簡體   English   中英

帶有多個html選項的rails link_to helper

[英]rails link_to helper with multiple html options

我在rails中有以下link_to

<%= link_to 'Import now', action: :import_ads, status: 1, remote: true,class: 'hidden-link', %>

上面的鏈接呈現為

<a href="/import_ads?class=hidden-link&status=1" data-remote="true">Import now</a>

為什么類名成為查詢字符串。 如何解決

這是不包括括號/括號可能會傷害您的時期。 嘗試這個

<%= link_to 'Import now', {action: :import_ads, status: 1},  { remote: true, class: 'hidden-link'} %>

哪個應該以html_options( link_to(body, url, html_options = {} ))的形式傳遞類和遠程信息

暫無
暫無

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

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