c# - 如何在 MVC4 中生成自定义删除操作结果?

标签 c# asp.net asp.net-mvc asp.net-mvc-4 restsharp

这是我的模型:

public class StockLine : Keyed
{
    /.../

    /// <summary>
    /// Reference to the delivery note line that created the current stock line.
    /// </summary>    
    [Navigation]
    [Display(ResourceType = typeof(Resources.ApplicationResources), Name = "DeliveryNoteLine")]
    public virtual DeliveryNoteLine DeliveryNoteLine { get; set; }

}

一个 StockLine 可能与其相应的 DeliveryNoteLine 相关。

我要实现的是,当您删除 DeliveryNoteLine 时,它还必须删除其对应的 StockLine。但我不知道怎么可能这样做。

这是我的 Controller :

/// <summary>
/// Returns the default Delete view for the TEntity object.
/// </summary>
/// <param name="id">Id of the TEntity object to delete.</param>
/// <returns>Redirection to the Index action if an error occurred, the Delete View otherwise.</returns>
public virtual ActionResult Delete(string id)
{
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json }
        .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
    var response = Client.Execute(request);

    // Deserialize response
    var model = DeserializeResponse<TEntity>(response);
    HandleResponseErrors(response);

    if (Errors.Length == 0)
        return View(model);
    else
    {
        ViewBag.Errors = Errors;
        return RedirectToAction("Index");
    }
}

/// <summary>
/// Handles the POST event for the Delete action.
/// </summary>
/// <param name="id">Id of the TEntity object to delete.</param>
/// <param name="model">TEntity object to delete.</param>
/// <returns>Redirection to the Index action if succeeded, the Delete View otherwise.</returns>
[HttpPost]
public virtual ActionResult Delete(string id, TEntity model)
{
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json }
        .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
    var response = Client.Execute(request);

    // Handle response errors
    HandleResponseErrors(response);

    if (Errors.Length == 0)
        return RedirectToAction("Index");
    else
    {
        request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json }
            .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
        response = Client.Execute(request);
        model = DeserializeResponse<TEntity>(response);

        ViewBag.Errors = Errors;
        return View(model);
    }
}

有什么想法吗??

最佳答案

我是这样解决的:

StockLinesController.cs

/// <summary>
/// Service returning API's StockLine that matches the given DeliveryNote id.
/// </summary>
/// <param name="DeliveryNoteLineId">The id of the DeliveryNoteLine that created the StockLine</param>
/// <returns>Returns the StockLine created by the given DeliveryNoteLine</returns>
public ActionResult GetStockLine(string DeliveryNoteLineId)
{
    // Only perform the request if the data is outdated, otherwise use cached data.
    if (DateTime.Now.AddMinutes(-10) > _cacheStockLines_lastCall.GetValueOrDefault(DateTime.MinValue))
    {
        var request = new RestSharp.RestRequest("StockLines/Get", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json };
        var response = Client.Execute(request);
        _cacheStockLines = DeserializeResponse<List<StockLine>>(response);
        _cacheStockLines_lastCall = DateTime.Now;
    }

    // Return the stock line created by the delivery note line introduced my parameter
    var ret = _cacheStockLines
        .Where(x => (x.DeliveryNoteLine != null && x.DeliveryNoteLine.Id == DeliveryNoteLineId))
        .Select(x => new { label = "ID", value = x.Id });

    return Json(ret, JsonRequestBehavior.AllowGet);
}

DeliveryNoteLinesController.cs

/// <summary>
/// Handles the POST event for the Delete action.
/// </summary>
/// <param name="id">Id of the TEntity object to delete.</param>
/// <param name="model">TEntity object to delete.</param>
/// <returns>Redirection to the Index action if succeeded, the Delete View otherwise.</returns>
[HttpPost]
public override ActionResult Delete(string id, DeliveryNoteLine model)
{
    //This code deletes the StockLine
    var stocks_request = new RestSharp.RestRequest("GetStockLine?DeliveryNoteLineId={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json }
        .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
    var stocks_response = Client.Execute(stocks_request);
    var stockline = DeserializeResponse<StockLine>(stocks_response);
    var reqdelstk = new RestSharp.RestRequest("StockLine?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json }
        .AddParameter("id", stockline.Id, RestSharp.ParameterType.UrlSegment);
    var resdelstk = Client.Execute(reqdelstk);

    //This code deletes the DeliveryNoteLine
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json }
        .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
    var response = Client.Execute(request);

    // Handle response errors
    HandleResponseErrors(response);

    if (Errors.Length == 0)
        return RedirectToAction("Index");
    else
    {
        request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json }
            .AddParameter("id", id, RestSharp.ParameterType.UrlSegment);
        response = Client.Execute(request);
        model = DeserializeResponse<DeliveryNoteLine>(response);

        ViewBag.Errors = Errors;
        return View(model);
    }
}

关于c# - 如何在 MVC4 中生成自定义删除操作结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19243478/

相关文章:

c# - 为什么依赖属性中的 get/set 没有做任何事情?

ASP.NET Response.BinaryWrite 文件下载被 SSL 阻止

javascript - 使用 Javascript 检查 ASP.NET 中的 Div 可见性

asp.net - ASP.NET MVC不能与ViewState和Postback一起使用吗?

asp.net-mvc - Url.Action 生成查询而不是参数 URL

c# - 使用 Fluent nHibernate 生成多个模式

c# - 使用 C# 发布到 Facebook 粉丝页面的墙上的最简单方法!

asp.net - 缺乏 CDN 可用性

javascript - 以向导形式传递数据而无需在 MVC 中回发

c# - 如果使用 "using"使用 var 类型很重要