所以即時學習ROR使用rails 4和im試圖驗證我的應用程序中的當前域,併爲每個域設置自定義消息。Rails - 驗證域的設置自定義消息
我在我的應用程序/視圖/佈局/ application.html.haml是這樣的:
!!!
%html
%head
//verify the domain here
//store in a var?
%meta{ content: 'text/html; charset=utf-8', 'http-equiv' => 'Content-Type' }
%meta{ content: 'Set the message according each domain here', name: 'description'}
有人可以幫忙嗎?
thaks!現在我試圖/調用方法在我看來視圖/文件夾index.html.haml使用該行: '= @get_domain_message「domain'' 但這不工作,並且沒有顯示錯誤信息 –
@wtkd,在例子中我設置了實例變量'@ domain_message',所以'@ get_domain_message'不起作用。實例變量需要在別處設置,如控制器。 – Mori
好!它適用於我使用#{get_domain_message}謝謝! –