当点击提交按钮时,使用jquery删除记录



我想使用jquery从数据库中删除我的记录。当我保存文件时,我使用代码,

记录Id在那里。

<<p> 工作/strong>

控制器代码

public ActionResult Delete(int id)
    {
        Job job = _repository.GetJob(id);
        if (job != null)
        {
            _repository.DeleteJobLanguages(id);
            _repository.DeleteJobLocations(id);
            _repository.DeleteJobPreferredIndustries(id);
            _repository.DeleteJobRequiredQualifications(id);
            _repository.DeleteJobRoles(id);
            _repository.DeleteJobskills(id);
            _repository.DeleteJob(id);
        }
        return View(job);
    }
Jquery

Dial4Jobz.Job。Add = function (sender) {Var form = $(sender).parent();Var data = form.serialize();

var url = form.attr('action');
$.ajax({
    type: "POST",
    url: url,
    data: data,
    dataType: "json",
    success: function (response) {
        Dial4Jobz.Common.ShowMessageBar(response.Message);
    },
    error: function (xhr, status, error) {
        Dial4Jobz.Common.ShowMessageBar(xhr.statusText);
    }
});
return false;

};

当我点击提交按钮时,它会调用jquery。然后显示一些错误。如何在jquery中编写删除代码?

您可以有一个服务器端控制器动作,它将接受需要删除的记录的id:

[HttpDelete]
public ActionResult Delete(int id)
{
    repository.Delete(id);
    return Json(new { id = id });
}

,然后以同样的方式使用AJAX调用它:

$.ajax({
    type: "DELETE",
    url: url,
    data: { id: '123' }, // <-- put the id of the record you want to delete here
    success: function (response) {
    },
    error: function (xhr, status, error) {
    }
});

相关内容

  • 没有找到相关文章

最新更新