gpt4 book ai didi

javascript - 将 JSON 反序列化为 JAVASCRIPT 对象

转载 作者:数据小太阳 更新时间:2023-10-29 04:13:02 24 4
gpt4 key购买 nike

<分区>

我有一个将 JSON 文本反序列化为 javascript 对象的问题,我测试了 jquery 和 yui 库,我有这个类:

function Identifier(name, contextId) {
this.name = name;
this.contextId = contextId;
}

Identifier.prototype.setName = function(name) {
this.name = name;
}

Identifier.prototype.getName = function() {
return this.name;
}

Identifier.prototype.setContextId = function(contexId) {
this.contextId= contexId;
}

Identifier.prototype.getContextId = function() {
return this.contextId;
}

我有这个 JSON:

{
"Identifier": {
"name":"uno",
"contextId":"dos"}
}

我想解析创建一个标识符对象,我的问题是这句话:

var obj = jQuery.parseJSON('{"Identifier": { "name":"uno","contextId":"dos"}}');

var obj2 = JSON.parse('{"Identifier": { "name":"uno","contextId":"dos"}}');

不起作用,var obj 和 obj2 不是标识符对象,我该如何解析它?谢谢

这个问题不是重复的,因为它比迈克尔标记为重复的问题早了 5 年

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com