我有一个简单的方法
def country_list
@countries = User.find(:all).map(&:country).uniq
render :json => @countries
end
如果它的路径是country_list_path
,我如何将响应用作自动完成源的列表,或者只是显示?
如果我放在任何地方country_list_path
,我会得到 url 而不是响应
我有一个简单的方法
def country_list
@countries = User.find(:all).map(&:country).uniq
render :json => @countries
end
如果它的路径是country_list_path
,我如何将响应用作自动完成源的列表,或者只是显示?
如果我放在任何地方country_list_path
,我会得到 url 而不是响应