将JSON字符串解析为JavaScript对象原型或构造函数

x33g5p2x  于2022-10-16 转载在 Java  
字(1.7k)|赞(0)|评价(0)|浏览(1032)

在本文中,我将向您展示如何将JSON字符串解析为特定的JavaScript对象或构造函数(即使用特定的原型)。
JavaScript提供JSON。parse()API将JSON字符串解析为JavaScript对象。但在本文中,我向您展示了如何使用构造函数将JSON字符串解析为JavaScript对象原型。

将JSON字符串解析为JavaScript对象原型或构造函数

让我们创建一个JavaScript构造函数:

  1. function Post(){
  2. this.id = "";
  3. this.title = "";
  4. this.description = "";
  5. this.postedUser = new User();
  6. }
  7. function User(){
  8. this.id="";
  9. this.name = "";
  10. this.age = "";
  11. }

为了进行测试,我们需要用JavaScript创建一个JSON对象,如:

  1. var json2 = {
  2. "post" : {
  3. "id" : "1",
  4. "title" : "post title",
  5. "description" : "post description",
  6. "postedUser" : {
  7. "id" : "1",
  8. "name" : "Ramesh",
  9. "age" : "29"
  10. }
  11. }
  12. }

现在,我们创建一个JavaScript函数,将上面的JSON解析为JavaScript对象:

  1. function demo(){
  2. // parse to json string
  3. var jsonStr = JSON.stringify(json2);
  4. // parse json string into JavaScript Object
  5. var object = JSON.parse(jsonStr);
  6. console.log(object);
  7. console.log(object.getTitle());
  8. }
  9. demo();

完成代码和输出

  1. function Post(){
  2. this.id = "";
  3. this.title = "";
  4. this.description = "";
  5. this.postedUser = new User();
  6. }
  7. function User(){
  8. this.id="";
  9. this.name = "";
  10. this.age = "";
  11. }
  12. var json2 = {
  13. "post" : {
  14. "id" : "1",
  15. "title" : "post title",
  16. "description" : "post description",
  17. "postedUser" : {
  18. "id" : "1",
  19. "name" : "Ramesh",
  20. "age" : "29"
  21. }
  22. }
  23. }
  24. function demo(){
  25. // parse to json string
  26. var jsonStr = JSON.stringify(json2);
  27. // parse json string into JavaScript Object
  28. var object = JSON.parse(jsonStr);
  29. console.log(object);
  30. console.log(object.getTitle());
  31. }
  32. demo();

为了获得最佳学习体验,我强烈建议您打开一个控制台(在Chrome和Firefox中,可以通过按Ctrl+Shift+I来完成),导航到“控制台”选项卡,复制并粘贴本文中的每个JavaScript代码示例,然后按Enter/Return键来运行它。

相关文章

最新文章

更多