gpt4 book ai didi

ruby-on-rails - 从 cardmagic/contacts gem 检索联系人时救援身份验证错误

转载 作者:数据小太阳 更新时间:2023-10-29 08:13:39 25 4
gpt4 key购买 nike

我正在使用 cardmagic/contacts gem 从我的应用程序中的电子邮件地址导入联系人。它工作正常,但我的问题是我想捕获身份验证错误,例如以下代码的错误用户名/密码。

@contacts = Contacts.guess(@username, @password)

我想向用户显示该错误。

我试过这个但对我不起作用。

@contacts = Contacts.guess(@username, @password)  rescue Contacts::AuthenticationError  

请指导我如何操作。谢谢。

最佳答案

def import
@username = params[:user]
@password = params[:pass]
begin
@contacts = Contacts.guess(@username, @password)
rescue
@error_message = e.message
render :action => 'new'
end
redirect_to root_path
end

new.html.erb:

<% if @error_message %>
<%= @error_message %>
<% end %>
HTML to get username & password inputs

关于ruby-on-rails - 从 cardmagic/contacts gem 检索联系人时救援身份验证错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7088332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com