的Rails 4.0 紅寶石2.0的Rails的link_to鏈接填寫表單頁面上
我試圖創建填寫一個文本字段數據的當前頁面,我已經有一個鏈接。
這裏是我的視圖代碼(即不工作)
<% if feed_item.in_reply_to %>
<%= link_to "reply", mentions_path(:content => "@#{feed_item.user.username}") %>
<% end %>
所有我想要的是進入一個名爲micropost_content
任何幫助或textarea的東西是會指出@#{feed_item.user.username}
我在正確的方向將是巨大的
--C
ED IT:
似乎每個人都與@混淆......我把@,因爲我希望它在頁面上顯示爲
@usernmae
既然username存儲在DB中爲username
。
這不是因爲我試圖插入一個「實例變量」 :-)
不能在此使用JavaScript來實現?
這更好的解釋它:
我瘦k當你在ruby中進行字符串操作時,你不需要附加@符號。所有你必須做的我們mentions_path(:content =>「#{feed_item.user.username}」)。讓我知道如果這個工程我會張貼它作爲一個答案 – Raghu
這並沒有工作 –
你可以檢查鏈接是否實際解析用戶名?可能是它被解決爲null或類似 – Raghu