我的 .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中的路由还是其他什么?