Json返回时间的格式中出现乱码问题的两种解决方案
程序员文章站
2024-02-27 22:24:57
前言:这段时间一直没有写博客,首先是我正在实现权限系列的绝色和操作的实现,因为这些东西在前面我们都已经说过了,所以我们就不重复的说这些了,那么我们知道,在我们使用json返...
前言:这段时间一直没有写博客,首先是我正在实现权限系列的绝色和操作的实现,因为这些东西在前面我们都已经说过了,所以我们就不重复的说这些了,那么我们知道,在我们使用json返回数据的时候时间的格式一般都会变了,变成我们不认识的一些字符,那么当我们遇到这些问题的时候我们该怎么解决呢,今天我就来小说一下这个的解决方法。
.发现问题
(1).正如我们在前言里面所说,我们在编写json解析时间的时候会返回一些莫名其妙的东西,那么我们是如何解决这个问题的呢?我现在有两种方法可以解决这个问题,下面我们首先来说一下思路。
(2).第一种解决方案就是我们使用jquery来解决,我们知道,当值从json传递到前台进行赋值的时候我们可以对其进行操作,使之可以直接反编译出时间显示在项目上面。
(3).第二种解决方案就是我直接使用c#代码在后台就编译好然后直接传递到前台显示。
(4).那么下面我们看一下如果我们没有解析json的话传递过来的时间的格式如图所示:
.前台使用jquery解决
(1)如果我们前台使用jquery来解决这个问题的话,那么我们首先想到的是我们如何解析这个过程呢,当然我们就想到了自己写一个javascript脚本来解析这个过程,当然这个脚本不是我写的了,而是别人写的,自己拿过来用,脚本代码如下:
复制代码 代码如下:
//by 韩迎龙
/**
* 对date的扩展,将 date 转化为指定格式的string
* 月(m)、日(d)、12小时(h)、24小时(h)、分(m)、秒(s)、周(e)、季度(q) 可以用 1-2 个占位符
* 年(y)可以用 1-4 个占位符,毫秒(s)只能用 1 个占位符(是 1-3 位的数字)
* eg:
* (new date()).pattern("yyyy-mm-dd hh:mm:ss.s") ==> 2006-07-02 08:09:04.423
* (new date()).pattern("yyyy-mm-dd e hh:mm:ss") ==> 2009-03-10 二 20:09:04
* (new date()).pattern("yyyy-mm-dd ee hh:mm:ss") ==> 2009-03-10 周二 08:09:04
* (new date()).pattern("yyyy-mm-dd eee hh:mm:ss") ==> 2009-03-10 星期二 08:09:04
* (new date()).pattern("yyyy-m-d h:m:s.s") ==> 2006-7-2 8:9:4.18
使用:(eval(value.replace(/\/date\((\d+)\)\//gi, "new date($1)"))).pattern("yyyy-m-d h:m:s.s");
*/
date.prototype.pattern = function (fmt) {
var o = {
"m+": this.getmonth() + 1, //月份
"d+": this.getdate(), //日
"h+": this.gethours() % 12 == 0 ? 12 : this.gethours() % 12, //小时
"h+": this.gethours(), //小时
"m+": this.getminutes(), //分
"s+": this.getseconds(), //秒
"q+": math.floor((this.getmonth() + 3) / 3), //季度
"s": this.getmilliseconds() //毫秒
};
var week = {
"0": "/u65e5",
"1": "/u4e00",
"2": "/u4e8c",
"3": "/u4e09",
"4": "/u56db",
"5": "/u4e94",
"6": "/u516d"
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length));
}
if (/(e+)/.test(fmt)) {
fmt = fmt.replace(regexp.$1, ((regexp.$1.length > 1) ? (regexp.$1.length > 2 ? "/u661f/u671f" : "/u5468") : "") + week[this.getday() + ""]);
}
for (var k in o) {
if (new regexp("(" + k + ")").test(fmt)) {
fmt = fmt.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
}
}
return fmt;
}
(2)当我们写完上面的脚本之后,这时候我们就需要在页面中使用这个脚本的信息,那么我们如何使用这个信息,当然我们首先需要引用这个对象:
@*日期格式的引用*@
<script src="@url.content("~/content/datapattern.js")"></script>
(3)这时候当我们引用完毕后,我们也就差最后一步了,这时候我们就需要设置easyui显示数据的格式哪里调用上面我们书写的json解析的脚本,代码如下:
复制代码 代码如下:
frozencolumns: [[
{ field: 'ck', checkbox: true }, //选择
{ title: '主键', field: 'id', width: 40, sortable: true }, //主键
{ title: '角色名称', field: 'realname', width: 100, sortable: true }, //登录名
{ title: '角色类型', field: 'categorycode', width: 100, sortable: true }, //用户名
{ title: '排序码', field: 'sortcode', width: 100, sortable: true },
{ title: '创建人', field: 'createby', width: 90, sortable: true },
{
title: '创建时间', field: 'createon', width: 140, sortable: true,
formatter: function (value, row, index) {
return (eval(value.replace(/\/date\((\d+)\)\//gi, "new date($1)"))).pattern("yyyy-m-d h:m:s");
}
},
{ title: '最后修改人', field: 'modifiedby', width: 90, sortable: true },
{ title: '修改时间', field: 'modifiedon', width: 140, sortable: true }
]],
(4)最后我们可以看一下转换后的想过如图所示:
.后台使用基类来解决
(1)上面我们说了第一种方法,那么我们现在来说第二种方法,第二种方法的话我们从标题就看出来了,我们是使用后台的基类来实现这个效果的,那么我们知道我们在以前的博客中我们建立了一个basecontroller基仓储,我们在这里就需要用到基仓储了。
(2)在基仓储里面我们写了如下的方法,在这个方法中我们用到了一些处理时间的对象,大家可以自己研究一下:
复制代码 代码如下:
/// <summary>
/// 返回处理过的时间的json字符串
/// </summary>
/// <param name="date"></param>
/// <returns></returns>
public contentresult jsondate(object date)
{
var timeconverter = new isodatetimeconverter { datetimeformat = "yyyy-mm-dd hh:mm:ss" };
return content(jsonconvert.serializeobject(date, formatting.indented, timeconverter));
}
(3)接下来我们就需要在我们的实现功能的控制器中调用这个方法来返回对象,角色控制器的代码如下:
复制代码 代码如下:
/// <summary>
/// 获得角色的信息显示在角色列表中
/// </summary>
/// <returns>返回角色信息的json对象</returns>
public actionresult getallroleinfos()
{
//实现对用户和多条件的分页的查询,rows表示一共多少条,page表示当前第几页
int pageindex = request["page"] == null ? 1 : int.parse(request["page"]);
int pagesize = request["rows"] == null ? 10 : int.parse(request["rows"]);
string realname = request["realname"];
int? enabled = request["enabled"] == null ? -1 : int.parse(request["enabled"]);
int? categorycode = request["categorycode"] == null ? -1 : int.parse(request["categorycode"]);
int total = 0;
//封装一个业务逻辑层的方法来处理多条件查询的信息
roleinfoquery roleinfo = new roleinfoquery()
{
pageindex = pageindex,
pagesize = pagesize,
realname = realname,
enabled = enabled,
categorycode = categorycode,
total = 0
};
var date = _roleinfo.loadsearchdate(roleinfo);
//构造json对象返回
var result = new { total = roleinfo.total, rows = date };
return jsondate(result);
}
(4)最后我们的前台恢复到原始的状态,不用变,实现的功能如图所示:
上一篇: .NET操作Excel实例分享
下一篇: java 数据结构中栈和队列的实例详解
推荐阅读
-
Json返回时间的格式中出现乱码问题的两种解决方案
-
PHP 中 DOMDocument保存xml时中文出现乱码问题的解决方案
-
ASP.Net Core中设置JSON中DateTime类型的格式化(解决时间返回T格式)
-
ASP.NET中url传递中文的解决方案,传递参数为汉字时出现乱码等问题
-
SpringBoot返回JSON日期格式出现的问题解决
-
解决SpringMVC 返回Java8 时间JSON数据的格式化问题处理的详解
-
SpringMVC 3.1下返回json时中文显示乱码问题的解决方案
-
PHP 中 DOMDocument保存xml时中文出现乱码问题的解决方案
-
解决SpringMVC 返回Java8 时间JSON数据的格式化问题处理的详解
-
SpringBoot返回JSON日期格式出现的问题解决