2

我已經在我的rails 3應用程序中安裝了ambethia's captcha plugin作爲插件。當我把<%= recaptcha_tags %>在我看來,它打印此頁面上:如何讓ambethia的captcha插件在rails 3中工作?

<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=my_key&error=expression"></script> <noscript> <iframe src="http://api.recaptcha.net/noscript?k=my_other_key" height="300" width="500" frameborder="0"></iframe><br/> <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge"></noscript> 

有沒有一種方式,我可以在軌道3這項工作?我會很感激任何幫助。

回答

2
<%=raw recaptcha_tags %> 
0

您已接受的答案,但是,我與設計一起使用,這並沒有需要使用原始 - 是的,我對Rails的3:

應用程序/視圖/用戶/註冊/ new.html.erb

<h2>Sign up</h2> 

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> 
    <%= devise_error_messages! %> 

    <p><%= f.label :email %><br /> 
    <%= f.text_field :email %></p> 

    <p><%= f.label :password %><br /> 
    <%= f.password_field :password %></p> 

    <p><%= f.label :password_confirmation %><br /> 
    <%= f.password_field :password_confirmation %></p> 

    <p><%= recaptcha_tags %></p> 

    <p><%= f.submit "Sign up" %></p> 
<% end %> 

<%= render :partial => "devise/shared/links" %> 

代碼的休息是這裏的一篇文章:http://www.communityguides.eu/articles/10

相關問題