首页 新闻 会员 周边

C# json字符串反序列化 日期问题

0
悬赏园豆:5 [待解决问题]

上图是我传入的json字符串,下图是反序列化后的异常

阳光总在风雨...的主页 阳光总在风雨... | 初学一级 | 园豆:195
提问于:2015-08-13 10:06
< >
分享
所有回答(5)
0

你用的json序列化框架强制要求类型格式了.换json.net吧

吴瑞祥 | 园豆:29449 (高人七级) | 2015-08-13 10:07
0

建议用mv中内置的Json.Net,如果web form的话还是安装Json.Net程序包!其性能远比web form远程内置的JavaScriptSerializer性能好很多!

Jeffcky | 园豆:2789 (老鸟四级) | 2015-08-13 10:30
0

如果不想换Json序列化工具,那就把对应的属性类型由DateTime改为string。

dudu | 园豆:31003 (高人七级) | 2015-08-13 10:34

这个是没办法的办法,但是这样改动很多字段都要改,底层实体类已经写好了

支持(0) 反对(0) 阳光总在风雨... | 园豆:195 (初学一级) | 2015-08-13 10:38
0

<script type="text/javascript">

window.TAB = " ";

function IsArray(obj) {

return obj &&

typeof obj === 'object' &&

typeof obj.length === 'number' &&

!(obj.propertyIsEnumerable('length'));

}

function Process() {

var json = document.getElementById("RawJson").value;
document.getElementById("Canvas").style.display = "block";
var html = "";

try {

if (json == "") json = "\"\"";

var obj = eval("[" + json + "]");

html = ProcessObject(obj[0], 0, false, false, false);

document.getElementById("Canvas").innerHTML = "<PRE class='CodeContainer'>" + html + "</PRE>";

} catch (e) {

alert("JSON语法错误,不能格式化,错误信息:\n" + e.message);

document.getElementById("Canvas").innerHTML = "";

}

}

function ProcessObject(obj, indent, addComma, isArray, isPropertyContent) {

var html = "";

var comma = (addComma) ? "<span class='Comma'>,</span> " : "";

var type = typeof obj;

 

if (IsArray(obj)) {

if (obj.length == 0) {

html += GetRow(indent, "<span class='ArrayBrace'>[ ]</span>" + comma, isPropertyContent);

} else {

html += GetRow(indent, "<span class='ArrayBrace'>[</span>", isPropertyContent);

for (var i = 0; i < obj.length; i++) {

html += ProcessObject(obj[i], indent + 1, i < (obj.length - 1), true, false);

}

html += GetRow(indent, "<span class='ArrayBrace'>]</span>" + comma);

}

} else if (type == 'object' && obj == null) {

html += FormatLiteral("null", "", comma, indent, isArray, "Null");

} else if (type == 'object') {

var numProps = 0;

for (var prop in obj) numProps++;

if (numProps == 0) {

html += GetRow(indent, "<span class='ObjectBrace'>{ }</span>" + comma, isPropertyContent);

} else {

html += GetRow(indent, "<span class='ObjectBrace'>{</span>", isPropertyContent);

var j = 0;

for (var prop in obj) {

html += GetRow(indent + 1, '<span class="PropertyName">"' + prop + '"</span>: ' + ProcessObject(obj[prop], indent + 1, ++j < numProps, false, true));

}

html += GetRow(indent, "<span class='ObjectBrace'>}</span>" + comma);

}

} else if (type == 'number') {

html += FormatLiteral(obj, "", comma, indent, isArray, "Number");

} else if (type == 'boolean') {

html += FormatLiteral(obj, "", comma, indent, isArray, "Boolean");

} else if (type == 'function') {

obj = FormatFunction(indent, obj);

html += FormatLiteral(obj, "", comma, indent, isArray, "Function");

} else if (type == 'undefined') {

html += FormatLiteral("undefined", "", comma, indent, isArray, "Null");

} else {

html += FormatLiteral(obj, "\"", comma, indent, isArray, "String");

}

return html;

}

function FormatLiteral(literal, quote, comma, indent, isArray, style) {

if (typeof literal == 'string')

literal = literal.split("<").join("&lt;").split(">").join("&gt;");

var str = "<span class='" + style + "'>" + quote + literal + quote + comma + "</span>";

if (isArray) str = GetRow(indent, str);

return str;

}

function FormatFunction(indent, obj) {

var tabs = "";

for (var i = 0; i < indent; i++) tabs += window.TAB;

var funcStrArray = obj.toString().split("\n");

var str = "";

for (var i = 0; i < funcStrArray.length; i++) {

str += ((i == 0) ? "" : tabs) + funcStrArray[i] + "\n";

}

return str;

}

function GetRow(indent, data, isPropertyContent) {

var tabs = "";

for (var i = 0; i < indent && !isPropertyContent; i++) tabs += window.TAB;

if (data != null && data.length > 0 && data.charAt(data.length - 1) != "\n")

data = data + "\n";

return tabs + data;

}
window.onload = Process();
</script>

如此低调的男人 | 园豆:842 (小虾三级) | 2015-08-13 10:42

<textarea id="RawJson" name="RawJson" class="json_input" rows="10" style="width: 100%; display: none" spellcheck="false" placeholder="Enter JSON to validate">
@Model.Returns</textarea>
<pre class="pre-scrollable" id="Canvas">

</pre>

支持(0) 反对(0) 如此低调的男人 | 园豆:842 (小虾三级) | 2015-08-13 10:43
0

是日期型吗?是不是字符串。

gw2010 | 园豆:1487 (小虾三级) | 2015-08-13 11:38

实体类定义的是日期类型的,并且还有其他字段也是

支持(0) 反对(0) 阳光总在风雨... | 园豆:195 (初学一级) | 2015-08-13 11:41
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册