knockout dates being reset on post to mvc controller

后端 未结 3 1610
甜味超标
甜味超标 2021-01-20 23:15

I have a knockout/mvc3 application. I am passing the date back to a controller.

controller

public ActionResult PackageUpdate(Package upd         


        
相关标签:
3条回答
  • 2021-01-20 23:47

    I think the problem lies in how you obtaining those dates to begin with. You show an example using MS date format such as /Date(1357650000000+1100)/ which is not standardized and is slowly being deprecated in favor of ISO8601, which looks like 2013-01-08T13:00:00.000+11:00.

    Indeed, when you JSON.stringify a javascript Date object, it uses the ISO8601 format. This also happens with ko.mapping.toJSON.

    There are several solutions to this problem, both client side and server side. This post describes the problem in detail and has some great answers that may help you.

    IMHO, the best solution is have your MVC controller emit and consume ISO8601 rather than the old Microsoft date format. The easiest way to do that is by using the Json.Net library which now has ISO8601 as the default so you don't even need to customize it. On the client side, you might also want to look at Moment.js - which makes it easy to parse and format ISO dates.

    0 讨论(0)
  • 2021-01-20 23:48

    I think it just the data type you push to you updatePackage object. Following is my code and run well, I use read the Date from jQuery Datepicker and use the format as 'dd MM, yy' (01 January 2013)

     var iEndInsuredDate = $('#dpkEndInsuredDate').val();
                var iEndPolicyDate = $('#dpkEndPolicyDate').val();
    
                $.ajax({
                    url: '@Url.Action("DeleteClientMember", "ClientMember")',
                    type: "POST",
                    dataType: "json",
                    data: { clientMemberID: id, endInsuredDate: iEndInsuredDate, endPolicyDate: iEndPolicyDate },
                    success: function (result) {
                        ShowWaiting("Reloading...");
                        Search(1);
                    }
                });
    

    and my ActionResult

    public ActionResult DeleteClientMember(int clientMemberID, DateTime? endInsuredDate, DateTime? endPolicyDate)
        {
            ClientMember model = clientMemberService.GetById(clientMemberID);
    
            //model.EndPolicyDate = endPolicyDate;
            model.EndInsuredDate = endInsuredDate;
            foreach (ClientMemberProduct item in model.ProductList)
            {
                item.EndDate = endInsuredDate;
            }
            model.IsActive = false;
            model.ActionStatus = ClientMemberActionStatus.PendingDelete.ToString();
            clientMemberService.CalculateInsFee(model);
            clientMemberService.Update(model);
            return null;
        }
    

    Hope this help Regard

    0 讨论(0)
  • 2021-01-20 23:54

    Thanks to Matt Johnson I was able to change the way the dates were being sent to the browser. It was a relativly easy fix taken from Perishable Dave answer to a similar problem with ASP.NET MVC JsonResult Date Format

    My JsonNetResult class now look like

    public class JsonNetResult : ActionResult
    {
        private const string _dateFormat = "yyyy-MM-dd hh:mm:ss";
    
        public Encoding ContentEncoding { get; set; }
        public string ContentType { get; set; }
        public object Data { get; set; }
    
        public JsonSerializerSettings SerializerSettings { get; set; }
        public Formatting Formatting { get; set; }
    
        public JsonNetResult()
        {
            SerializerSettings = new JsonSerializerSettings();
            Formatting = Formatting.Indented;
            SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Serialize;
        }
    
        public override void ExecuteResult(ControllerContext context)
        {
            if (context == null)
                throw new ArgumentNullException("context");
    
            HttpResponseBase response = context.HttpContext.Response;
    
            response.ContentType = !string.IsNullOrEmpty(ContentType)
              ? ContentType
              : "application/json";
    
            if (ContentEncoding != null)
                response.ContentEncoding = ContentEncoding;
    
            if (Data != null)
            {
                var isoConvert = new IsoDateTimeConverter();
                isoConvert.DateTimeFormat = _dateFormat;
    
                JsonTextWriter writer = new JsonTextWriter(response.Output) { Formatting = Formatting };
    
                JsonSerializer serializer = JsonSerializer.Create(SerializerSettings);
                serializer.Converters.Add(isoConvert);
    
                serializer.Serialize(writer, Data);
    
                writer.Flush();
            }
        }
    }
    

    I have added the iso date converter to the serizer

    in the controller you invoke it by:

    public JsonNetResult YourAction(){
        //your logic here
        return JsonNetResult(/*your object here*/);
    }
    

    When I wrote this I did not know about Web API. It is worth a look as it will do a lot of the heavy lifting when it comes to serialization of your objects. Checkout Getting Started with ASP.NET Web API 2

    0 讨论(0)
提交回复
热议问题