Nodejs converts JSON string into JSON object error solution

Nodejs converts JSON string into JSON object error solution

How to convert a JSON string into a JSON object?

JSON.parse(str) JSON is a built-in object in JavaScript, which provides methods for converting JSON objects to strings and vice versa;

Here comes the problem. I understand the principle but it still reports an error!

This is one of my JSON files, which contains some defined JSON test data;

This is the core code;

This is an error message;

Why is the error reported?

Because there is a space at the beginning of my json file. That's it.

OK, modify the code and test

Use trim to remove extra spaces at the beginning

ok, passed!

Nodejs parses JSON data

In nodejs, you don’t need to import the json2.js file like in js, you can directly operate the JSON object

Convert string to JSON

var str = "{ ' a ' : ' 1 ' , ' b ' : ' 2 ' }";
var json = JSON.parse(str);

JSON to string

var json = {
   a : ' 1 ',
   b : ' 2'
};
var str = JSON.stringify(json);

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Java reads the project json file and converts it into a JSON object
  • JavaScript object-oriented class inheritance case explanation
  • jsp Response object page redirection, dynamic display of time
  • Examples and comparison of 3 methods for deduplication of JS object arrays
  • An article to help you understand JavaScript-Object

<<:  Ubuntu 18.04 obtains root permissions and logs in as root user

>>:  Import csv file into mysql using navicat

Recommend

Analyzing the troublesome Aborted warning in MySQL through case studies

This article mainly introduces the relevant conte...

Docker configuration Alibaba Cloud Container Service operation

Configuring Alibaba Cloud Docker Container Servic...

Tips for turning pixels into comprehensive brand experiences

Editor: This article discusses the role that inte...

Specific use of the wx.getUserProfile interface in the applet

Recently, WeChat Mini Program has proposed adjust...

js canvas realizes slider verification

This article example shares the specific code of ...

MySQL 8.0.21 installation steps and problem solutions

Download the official website First go to the off...

Use of Linux xargs command

1. Function: xargs can convert the data separated...

Implementation of Vue single file component

I recently read about vue. I found a single-file ...

Mysql 8.0.18 hash join test (recommended)

Hash Join Hash Join does not require any indexes ...

How to install docker on centos

Here we only introduce the relatively simple inst...

CentOS uses local yum source to build LAMP environment graphic tutorial

This article describes how to use the local yum s...

How to create a Django project + connect to MySQL

1: django-admin.py startproject project name 2: c...

How to use regular expression query in MySql

Regular expressions are often used to search and ...