zoukankan      html  css  js  c++  java
  • time

    public ActionResult GetAllList()         {

                var list = db.Movies.ToList();

                return Json(list, JsonRequestBehavior.AllowGet);             //return Content(a);

            }

    @section Scripts{
        <script type="text/javascript">
            function formatNumToDate(value) {
              var now = eval(value.replace(//Date((d+))//gi, "new Date($1)"));///.../gi是用来标记正则开始和结束;是转义符;()标注了正则匹配分组1,$1
              var year = now.getYear() + 1900;
              var month = now.getMonth() + 1;
              var date = now.getDate();
              var hour = now.getHours();
               var minute = now.getMinutes();
               var second = now.getSeconds();
               return year + "-" + compareNine(month) + "-" + compareNine(date) + " " + compareNine(hour) + ":" + compareNine(minute) + ":" + compareNine(second);
           }
    
            $(document).ready(function () {
                function ChangeDateFormat(time) {
                    if (time != null) {
                        var date = new Date(parseInt(time.replace("/Date(", "").replace(")/", ""), 10));
                        var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
                        var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
                        return date.getFullYear() + "-" + month + "-" + currentDate;
                    }
                    return "";
                }
                $("#TestList").click(function () {
    
                    $.getJSON("/Movies/GetAllList", {}, function (result) {
                        
                        alert(result);
                        $.each(result, function (i, field) {
                            //var datetime = field.ReleaseDate.formatNumToDate();
                            
                            alert(i + " " + ChangeDateFormat(field.ReleaseDate));
    
                        });
    
    
    
    
    
    
    
                    });
                });
    
    
            });
         </script>
        }
  • 相关阅读:
    DcotrineFixtureBundle学习
    php方法(1)
    学习笔记(2)
    微信access_token的获取
    学习笔记(1)
    与你相遇——博客园
    单例模式
    Java集合
    sql 优化
    缓存与数据库的数据一致性的解决方案(转)
  • 原文地址:https://www.cnblogs.com/MarchThree/p/3717987.html
Copyright © 2011-2022 走看看