を返すアヤックスにステータスコードを返し...Railsが、私はここに非常に非常にシンプルな何かが欠けてると確信している未定義
JQUERY CODE
$.ajax({
type : "POST",
url : '/orders/create_or_update',
dataType: 'json',
contentType: 'application/json',
data : JSON.stringify(params)
})
.done(function(response){
console.log(response.status)
console.log(response)
})
CONTROLLER CODE
def create_or_update
...
render json: {"name" => "test"}, status: 200
end
OUTPUT OF CONSOLE.LOG
undefined
Object: {name: "test"}
はなぜ私のjQueryのでresponse.status
はstatus: 200
を返していませんか?
可能な複製:http://stackoverflow.com/questions/5344145/how-to-get-response-status-code-from-jquery-ajax –