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 dataIn nodejs, you don’t need to import the json2.js file like in js, you can directly operate the JSON object Convert string to JSONvar str = "{ ' a ' : ' 1 ' , ' b ' : ' 2 ' }"; var json = JSON.parse(str); JSON to stringvar 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:
|
<<: Ubuntu 18.04 obtains root permissions and logs in as root user
>>: Import csv file into mysql using navicat
I didn't intend to write this blog, but durin...
This article mainly introduces the relevant conte...
Configuring Alibaba Cloud Docker Container Servic...
Editor: This article discusses the role that inte...
Recently, WeChat Mini Program has proposed adjust...
This article example shares the specific code of ...
When making a table page, sometimes the width set ...
Download the official website First go to the off...
1. Function: xargs can convert the data separated...
I recently read about vue. I found a single-file ...
Hash Join Hash Join does not require any indexes ...
Here we only introduce the relatively simple inst...
This article describes how to use the local yum s...
1: django-admin.py startproject project name 2: c...
Regular expressions are often used to search and ...