gpt4 book ai didi

javascript - 一个 javascript 类,它接受 JSON 对象并将其转换为属性 property

转载 作者:行者123 更新时间:2023-12-02 18:00:37 25 4
gpt4 key购买 nike

我尝试将 JSON 对象转换为 JavaScript 中的属性字符串。

喜欢:

json = {a:"1", b:"2"};

输出将是 html 元素,例如

"< div a='1', b='2'>< /div>"

我尝试过这种方式,

var json = {a:"1",    b:{c:"2", d:"3"}};
function myFunction(obj, json) {
for (var i in json) {
obj[i] = json[i];
}
}

据我所知,obj 已创建,但我未能做出可在 html 中使用的正确输出,因为 json 对象可以嵌套。再次抱歉这个菜鸟问题。

好吧,我写的是这样的:

var o = {a:"1",    b:{c:"2", d:"3"}}    
function objToString (obj) {
var str = '<div ';
for (var p in obj) {
if (obj.hasOwnProperty(p)) {
str += p + '=' + '"'+obj[p]+'"' + ',';
}
}
str= str.replace(/,$/ , '>');
return str;
}
objToString (o);

但是上面的代码不适用于嵌套对象。所以,我尝试了这种方法:

var o = {
a: "1",
b: {
c: "2",
d: "3"
}
}
console.log(o);
var tx = new String();
tx = '<div ' + JSON.stringify(o) + '>';
console.log(tx);
tx.replace(/:/gi, '=');
tx = tx.replace(/}/, '');
tx = tx.replace(/{/, '');
console.log(tx);

但是这次输出与正确的 html 不匹配...避风港救救我:(

最佳答案

我编写了一些可以解决您问题的程序。如果我理解正确的话,这正是您所需要的。

我使用递归和访问者模式解决了这个问题。奇迹般有效。我没有测试所有可能的类型,但可以在需要时轻松插入缺失的类型。数组当前确实会崩溃 - 如果它们也出现,您将需要捕获它。

一些解释:

1)我测试了值的类型。

2)我初始化了一个数组来存储我能找到的值。

3)我编写了一个递归方法来测试对象属性是否为对象

4) 如果属性是一个对象,它将在同一方法中递归使用。

5) 如果属性不是对象,则其数据将添加到之前初始化的数组中。

6) 执行递归方法后,我调试数组并创建示例输出。

// the object to use:   
var o = {a:1, b:{c:"2", d:"3"}}

// some type testing:
//alert(typeof(o.a)); // string
//alert(typeof(o.b)); // object


// implement a recursive method that reads all
// the needed stuff into a better-to-handle array.
function readAttributesRecursive(obj, arr) {
for(prop in obj) {

// get the value of the current property.
var propertyValue = obj[prop];
// get the value's type
var propertyValueType = typeof(propertyValue);


// if it is no object, it is string, int or boolean.
if(propertyValueType !== 'object') {
arr.push({
property : prop,
value : propertyValue,
type : propertyValueType // just for debugging purposes
});
}
// otherwise it is a object or array. (I didn't test arrays!)
// these types are iterated too.
else {
// red the object and pass the array which shall
// be filled with values.
readAttributesRecursive(propertyValue, arr);
}
}
} // END readAttributesRecursive(obj, arr)



// ok, lets get the values:
var result = new Array();
readAttributesRecursive(o, result)

console.debug(result);

// the result looks like this:
// [
// { property : "a", type : "number", value: "1" }
// { property : "c", type : "string", value: "2" }
// { property : "d", type : "string", value: "3" }
// ]


// And now do the <div>-stuff:
var div = '<div';
for(i = 0; i < result.length; i++) {
var data = result[i];
div += ' ' + data.property + '="' + data.value + '"';
}
div += ">Some text</div>";

console.debug(div);

注意:请永远不要创建这样的 HTML 元素(使用字符串)!使用 document.createElement() 并处理创建的 DOM 元素。使用字符串可能会导致奇怪的行为、错误和可读性较差的代码...(字符串在插入 DOM 后并没有完全像 DOM 元素一样处理)

关于javascript - 一个 javascript 类,它接受 JSON 对象并将其转换为属性 property,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20579289/

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