Ajax on Railsを使用して、400というエラーが発生しています。 フォームを送信するときに、Jqueryからパラメータとして送信する文字列があり、文字列を抽出してコントローラで保存できるように、params [:assignee]から取得したいと考えています。 マイコントローラ:Ajaxが悪いリクエスト400 Rails
def create
@task = Task.new(task_params)
@task.user = current_user
username = params.permit[:assignee]
@task.assignee = username
#set_category
respond_to do |format|
if @task.save
format.html { redirect_to tasks_url, notice: 'Task was successfully created. '+task_params.inspect}
#format.html { redirect_to @task, notice: 'Task was successfully created.' }
format.json { render :show, status: :created, location: @task }
else
format.html { render :new }
format.json { render json: @task.errors, status: :unprocessable_entity }
end
end
end
def task_params
params.require(:task).permit(:owner, :value, :completed, :category, :date, :assignee)
end
そして、これは私のJSです:
$("#new_task").submit(function() {
alert("form: "+assignee);
//event.preventDefault();
$.ajax({
url: "/tasks",
type: "POST",
data: {assignee},
dataType: "json",
success: function(data) {
alert('successfully');
},
error: function(xhr, textStatus, error) {
alert(xhr.statusText+""+textStatus+""+error);
}
});
});
譲受人はjqueryのオートコンプリートフォームで選択したユーザー名です。
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join("");
assignee=this.value;
$('input[name=commit]').prop("disabled",false);
return false;
}
私のルートは、「タスク/あります保存されたタスクと新しいフォームを作成するフォームが表示されます。 ネットでたくさん検索してみました。どのようにできるのか?本当にありがとうございまし
作成タスクに連想させる「ポストタスク」の私のフォームの値を失うだろうか? – inye
404エラーは、クライアントがルートを見つけることができないことを意味します。 routes.rbを確認してください。 –
申し訳ありませんが、私の間違い!それは400です。コンソール: http:// localhost:3000/tasks/400(Bad Request) – ValeMarz