我有一个 jQuery 脚本,它试图像这样发布数据:
$.post({
$('div#location_select').data('cities-path'),
{ location_string: $('input#city_name').val() },
});
这可行,但由于某种原因,服务器将其作为 HTML 请求而不是 JS 请求接收。是什么赋予了?这是我的控制器中的响应块:
if @city.save
respond_to do |format|
format.html { redirect_to @city }
format.json { render :json => @city, :status => :ok }
end
else
respond_to do |format|
format.html { render :new }
format.json { render :json => { :error => "Incorrect location format, please input a city and state or country, separated by a comma." }, :status => :unprocessable_entity }
end
end
您如何确保 Ajax 请求到达 Controller 并由format.js
响应者处理?
更新:当我更改$.post
为$.ajax
并专门定义了它的工作数据类型时:
$.ajax({
type: 'POST',
url: $('div#location_select').data('cities-path'),
data: { location_string: $('input#city_name').val() },
dataType: 'json'
});