我正在尝试添加 Ajax,到目前为止,我能够添加 javascript 响应,但是我无法添加模板。
这是我的javascript
应用程序.js
$("#new_role").on("ajax:success", function (e, data, status, xhr)
{
$("#newRoleForm").hide(1000);
return;
}).bind("ajax:error", function (e, xhr, status, error)
{
return alert("Error");
});
这是我的控制器
def create
@role = Role.new(params[:role])
respond_to do |format|
if @role.save
format.html { redirect_to roles_path, notice: 'Role was successfully created.' }
format.json { render json: @role, status: :created, location: @role }
else
format.html { render action: "new" }
format.json { render json: @role.errors, status: :unprocessable_entity }
end
end
end
现在我看到很多评论说我应该添加 create.js.erb,但如果我只是创建一个并放置 alert(...); 它确实会被执行。我已将表单修改为 ajax remote => true。但我不确定我做错了什么。