2014-01-15 62 views
0

我已經在軌軌的link_to助手與多個HTML選項

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

下面的link_to上面的鏈接呈現爲

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

爲什麼類名變得作爲查詢字符串。如何解決它

回答

0

這是一個不包括parens /牙套可以傷害你的時間。試試這個

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

哪些應該通過類和遠程作爲html_options(link_to(body, url, html_options = {}))

+0

也可以移動'狀態:1'到底。 – steakchaser

+0

上面的鏈接拋出語法錯誤yntax錯誤,'意外')',期待=>'我嘗試了一些可能性,但我無法解決它 – kndwsu

+0

現在嘗試了一個額外的','在末端 – Doon