私は .html.erb コードにこれを持っています:
$.ajax({
url: "/timeMachineEdit",
data: {editTimeMachine: newArray},
type: 'POST',
success: function (res) {
if (res.result === 'ok') {
alert('Data saved');
} else {
alert('Save error');
}
},
error: function () {
alert('Save error.');
}
});
これは私のdatasets_controller.rbにあります
def timeMachineEdit
@dataset = current_user.dataset
@dataset.machine_time = params[:editTimeMachine]
end
そして私のroutes.rbでは:
match "/timeMachineEdit", to: "datasets#timeMachineEdit"
しかし、提出されたときにショー:
POST http://localhost:3000/timeMachineEdit 500 (Internal Server Error)
ここで問題はどこにありますか?ajax URLのルートですか、それとも何か他のものですか?