得到紅寶石散列鍵值我有一個哈希:使用Erubis
hash = "email_address"=>"[email protected]"
我想從這個散列這是「[email protected]」使用erubis獲得的價值。這是行不通的:
<%
pp hash.[email_address]
%>
得到紅寶石散列鍵值我有一個哈希:使用Erubis
hash = "email_address"=>"[email protected]"
我想從這個散列這是「[email protected]」使用erubis獲得的價值。這是行不通的:
<%
pp hash.[email_address]
%>
你試過這個嗎?
<%= pp hash["email_address"] %>
或
<%= pp hash[:email_address] %>
是提供'params'值,我得到了這一點:不能轉換成字符串整數 – 2012-08-07 09:32:58
可以嘗試僅此代碼'<%=哈希[ :email_address]%>'? – 2012-08-07 09:35:35
我也嘗試了第二個,這是我得到的:不能將符號轉換爲整數 – 2012-08-07 09:36:23
更多的幫助 – PriteshJ 2012-08-07 10:27:55