【问题标题】:How to save special characters in c# asp.net如何在c#asp.net中保存特殊字符
【发布时间】:2016-09-23 01:22:48
【问题描述】:

我在下面有这个JS 代码来保存用户输入的数据。所有数据都在var JsonData = JSON.stringify(data); 中查看。我在Task (& sign)[Task Value is (A & B)] 中输入了一个特殊字符。但是在我的控制器中,它在& 符号之前剪切了数据。

$('#btn_SubmitOT').live('click', function () {
    if (lastSel != -1) {
        $('#' + lastSel + '_isValidated').val(true);
        //            $('#' + lastSel + '_RequestedBy').val();
        var datefiled = $('#ot_dateFiled').val().
        $('#' + lastSel + '_OTDateApplied').val(datefiled);
        jQuery('#grdOTApplication').saveRow(lastSel, false, 'clientArray');
    }
    var task = $("#task_ot").val();
    //var data = $("#grdOTApplication").jqGrid('getRowData');
    var data = {
        DateFiled: $("#ot_dateFiled").val(),
        DateofOvertime: $("#ot_dateOfOT").val(),
        EmployeeId: $("#empApplicants").val(),
        In1: $("#from_sup").val() + $("#from_AM_PM").val(),
        Out1: $("#to_sup").val() + $("#to_AM_PM").val(),
        EstimatedHours: $("#estimateHrsWrk_ot").val(),
        SpecificTask: task,
        ApprovedBy: $("#approveofficial").val() != null ? $("#approveofficial").val() : 0,
        RecommendedBy: $("#recommenders").val() != null ? $("#recommenders").val() : 0,
        SupervisedBy: $("#immediatesupervisor").val() != null ? $("#immediatesupervisor").val() : 0,
        IsCOC: $('#cmbCO').val() == 1 ? true : false
    }


    var JsonData = JSON.stringify(data);

    var urlPA = '../Request/saveOvertimeRequest?overtimeRequest=' + JsonData + '&_role = 3;

    $.ajax({
        type: "GET",
        url: urlPA,
        success: function (response) {
            alert(response);
            $("#grdOTApplication").trigger("reloadGrid", [{
                current: true
            }]);
            $("#grdOTHistory").trigger("reloadGrid", [{
                current: true
            }]);
            $("#ot_dateOfOT").val("");
            $("#from_sup").val("__:__");
            $("#to_sup").val("__:__");
            $("#estimateHrsWrk_ot").val("");
            $("#task_ot").val("");
        },
        error: function (response) {
            alert("Error");
        },
        datatype: "text"
    });
});

这是我的控制器代码,我放置了一个断点并对其进行调试,为什么在它到达此代码ovt = jss.Deserialize<OvertimeRequest>((string)overtimeRequest); 之后它直接到catch。正如我在上面提到的,它会在 & 符号之前剪切数据。

public String saveOvertimeRequest(String overtimeRequest, int _role)
    {
        Nullable<DateTime> MyNullableDate = null;
        try
        {
            Int32 requestedBy = Convert.ToInt32(HttpContext.Current.Session["PersonId"]);
            Int32 empId = Convert.ToInt32(HttpContext.Current.Session["EmpId"]);

            OvertimeRequest ovt = new OvertimeRequest();
            JavaScriptSerializer jss = new JavaScriptSerializer();
            ovt = jss.Deserialize<OvertimeRequest>((string)overtimeRequest);
            ovt.IsFromESS = true;
            ovt.RequestedBy = requestedBy;
            if (_role == 3 || ((ovt.SupervisedBy == 0 || ovt.SupervisedBy == null) && ovt.RecommendedBy > 0 && ovt.ApprovedBy > 0))
            {
                ovt.SupervisedBy = null;
                ovt.DateSupervised = DateTime.Now;

            }
            if (_role == 4 || ((ovt.SupervisedBy == 0 || ovt.SupervisedBy == null) && (ovt.RecommendedBy == 0 || ovt.RecommendedBy == null) && ovt.ApprovedBy > 0))
            {
                ovt.SupervisedBy = null;
                ovt.DateSupervised = DateTime.Now;
                ovt.RecommendedBy = null;
                ovt.DateRecommend = DateTime.Now;

            }
            if (_role == 5 || ((ovt.SupervisedBy == 0 || ovt.SupervisedBy == null) && (ovt.RecommendedBy == 0 || ovt.RecommendedBy == null) && (ovt.ApprovedBy == 0 || ovt.ApprovedBy == null)))
            {
                ovt.SupervisedBy = null;
                ovt.DateSupervised = DateTime.Now;
                ovt.RecommendedBy = null;
                ovt.DateRecommend = DateTime.Now;
                ovt.ApprovedBy = null;
                ovt.DateApproved = DateTime.Now;
                ovt.IsPosted = true;
                ovt.DatePosted = DateTime.Now;
            }
            try
            {
                db.AddToOvertimeRequests(ovt);
                db.SaveChanges();
            }
            catch (Exception)
            {
                throw;
            }
          }
        catch (Exception e)
        {
            return "An error has occured while sending your request.";
        }
    }

【问题讨论】:

    标签: javascript c# asp.net-mvc-3


    【解决方案1】:

    您正在丢失数据,因为您正在执行 GET 请求。当您进行 GET 调用时,数据将作为查询字符串发送,&amp; 在查询字符串中具有特殊含义。它是不同查询字符串项的分隔符。

    您应该做的是对服务器进行 POST 调用。此外,不需要像模型绑定器那样显式地进行反序列化。只需创建一个 C# POCO 类,它代表您发送的数据结构并将其用作您的操作方法参数。

    public class OverTimeViewModel
    {
      public DateTime DateFiled { set;get;}
      public DateTime DateofOvertime { set;get;}
      public int EstimatedHours { set;get;}
      //Add other properties here
    }
    

    在 javascript 代码中,使用 POST 作为 ajax 方法。

    var viewModel = {
                      DateFiled: '12/12/2012'
                      EstimatedHours : 10
                    } ;
    // values hard coded for demo. Replace with real values
    $.ajax({
        type: "POST",
        url: urlPA,
        data : viewModel 
        success: function (response) {
          //do something with the response
        }
    });
    

    现在确保使用我们创建的视图模型作为参数

    public ActionResult SaveOvertimeRequest(OverTimeViewModel model)
    {
      //check model.DateField etc and use 
    }
    

    【讨论】:

    • 如果我用这个方法可以保存所有特殊字符吗?
    【解决方案2】:

    感谢所有查看我帖子的人。

    我用这个代码var task =escape($("#task_ot").val());

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-12-09
      • 2015-04-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-02-22
      • 2017-02-03
      • 2021-06-29
      相关资源
      最近更新 更多