我需要通过 json 对象呈现我的记录。为此,我创建了我的路线
match '/email/verify' => 'home#valid_email', :as => :email_exists, :defaults =>{:format=>'json'}
我的控制器动作为 respond_to :html, :json, :js def valid_email
@email=ConnectzUser.all
respond_with(@email) do |format|
format.json {render :json => @email.to_json }
end
end
当我使用 localhost:3000/email/verify 浏览 url 时,我得到的值为 null 而不是 json 对象。我的模型也有记录。请帮忙