无法通过Jquery append()方法将数据附加到元素

时间:2018-01-01 18:24:24

标签: c# jquery ajax asp.net-mvc-5 jsonresult

我有一个在ASP.NET MVC5上开发的应用程序。 以下是控制器的代码:

namespace ACCOUNTS2.Controllers
{
public class SelectDealController : Controller
{
    private ACCOUNTSEntities db = new ACCOUNTSEntities();



    // GET: /SelectDeal/
    public ActionResult Index(string option,string search)
    {
        var sell_deal = db.Sell_Deal.Include(s => s.Client_Info);
        return View(sell_deal.ToList());
    }

    [HttpPost]
    public JsonResult GetSearchingData(string SearchBy, string SearchValue)
    {
        List<Sell_Deal> selldeal = new List<Sell_Deal>();
        if(SearchBy == "Dealer_Name")
        {

                string Dealer_Name = SearchValue;
                selldeal = db.Sell_Deal.Where(x => x.Dealer_Name.StartsWith(SearchValue) || SearchValue == null).ToList();


            return Json(selldeal, JsonRequestBehavior.AllowGet);
        }
        else if(SearchBy == "Location")
        {
            selldeal = db.Sell_Deal.Where(x => x.Location.StartsWith(SearchValue) || SearchValue == null).ToList();
            return Json(selldeal, JsonRequestBehavior.AllowGet);
        }
        else if (SearchBy == "Client_Name")
        {
            selldeal = db.Sell_Deal.Where(x => x.Client_Info.Client_Name.StartsWith(SearchValue) || SearchValue == null).ToList();
            return Json(selldeal, JsonRequestBehavior.AllowGet);
        }
        else
        {
            var sell_deal1 = db.Sell_Deal.Include(s => s.Client_Info).ToList();
            return Json(sell_deal1, JsonRequestBehavior.AllowGet);
        }
    }

以下是我的模型的代码:

namespace ACCOUNTS2
{
using System;
using System.Collections.Generic;



public partial class Sell_Deal
{
    public Sell_Deal()
    {
        this.Sell_Deal_Details = new HashSet<Sell_Deal_Details>();
    }

    public decimal Deal_ID { get; set; }
    public Nullable<System.DateTime> Deal_Date { get; set; }
    public Nullable<decimal> Total_Amount_Remaining { get; set; }
    public Nullable<decimal> Client_ID { get; set; }
    public string Dealer_Name { get; set; }
    public Nullable<System.DateTime> Validity_Date { get; set; }
    public string Location { get; set; }
    public Nullable<decimal> Deal_Amount { get; set; }

    public virtual Client_Info Client_Info { get; set; }
    public virtual ICollection<Sell_Deal_Details> Sell_Deal_Details { get; set; }
}

}

以下是我在视图中的jquery代码:

 $(document).ready(function () {

    $("#BtnSearch").click(function () {
        var SearchBy = $("#SearchBy").val();
        var SearchValue = $("#Search").val();
        var SetData = $("#DataSearching");
        SetData.html("");
        $.ajax({
            type: "post",
            url: "/SelectDeal/GetSearchingData?SearchBy=" + SearchBy + "&SearchValue=" + SearchValue,
            datatype: JSON,
            contentType: "html",
            success: function (result) {
                if (result.length == 0) {
                    SetData.append('<tr style="color:red"><td colspan="3">No Match Data</td></tr>')
                }
                else {
                    $.each(result, function (Index, value) {
                        var val = "<tr>" +
                       "<td>" + value.Deal_Date + "</td>" +
                       "<td>" + value.Total_Amount_Remaining + "</td>" +
                       "<td>" + value.Dealer_Name + "</td>" +
                       "<td>" + value.Validity_Date + "</td>" +
                       "<td>" + value.Location + "</td>" +
                       "<td>" + value.Deal_Amount + "</td>" +
                       "<td>" + value.Client_Info.Client_Name + "</td>" +
                       "</tr>";

                        SetData.append(val)
                    });
                }
            }
        });
    });
});

当我单击按钮时,我希望根据控制器中JsonResult方法中写入的逻辑在表中显示过滤后的数据,但是没有发生。据我所知,ajax成功事件的第一个“if”条件是将数据附加到元素,但它在ajax代码的“else”主体中根本不起作用。我的代码中有什么问题吗?我需要在这里进行任何修正吗?请帮忙!

1 个答案:

答案 0 :(得分:0)

您的Ajax请求无效。移除contentType: "html"并将datatype: JSON修改为datatype: "json";

$.ajax({
    type: "post",
    url: "/SelectDeal/GetSearchingData?SearchBy=" + SearchBy + "&SearchValue=" + SearchValue,
    datatype: "json",
    success: function (result) {
        if (result.length == 0) {
            SetData.append('<tr style="color:red"><td colspan="3">No Match Data</td></tr>')
        }
        else {
            $.each(result, function (Index, value) {
                var val = "<tr>" +
               "<td>" + value.Deal_Date + "</td>" +
               "<td>" + value.Total_Amount_Remaining + "</td>" +
               "<td>" + value.Dealer_Name + "</td>" +
               "<td>" + value.Validity_Date + "</td>" +
               "<td>" + value.Location + "</td>" +
               "<td>" + value.Deal_Amount + "</td>" +
               "<td>" + value.Client_Info.Client_Name + "</td>" +
               "</tr>";

                SetData.append(val)
            });
        }
    }
});

此外,您正在应用Post请求,但参数SearchBySearchValue会通过GET传递到服务器端。这不是执行它的正确方法。在请求正文中发布参数而不是在网址中。