databasedotcom gemの使用を開始したばかりで、現在はスタックしています。
IdでSalesforceでレコードを検索しようとすると、ID /レコードが存在しない場合、次のエラーが発生します。
「提供された外部IDフィールドが存在しないか、アクセスできません:」
Idが存在する場合は、ページを正常に続行できます。
これが私のコードです:
def search
@account = Account.find(params[:id])
if @account.Id
redirect_to new_user_registration_path(:id => @account.Id)
elsif params[:id].to_s.present? and @account.nil?
flash[:alert] = "Couldn't find that one. Please check and re-submit your number."
redirect_to search_path
end
終わり
どうすればこれを克服できますか?
ありがとうございました。