Angular. fromJson and toJson method usage example, angular. tojson usage
This article describes angular. fromJson and toJson methods. We will share this with you for your reference. The details are as follows:
AngularJSangular.fromJson()
You can parse a Json string into an object or an array of objects:
<! DOCTYPE html>
The result printed on the console is as follows:
liSizhangSan321
Correspondingly, the object can be converted from Json to Json:
var obj ={ name:"liSi", password:"321"}var str = angular.toJson(obj, true);console.log(str);
The output is as follows:
{ "name": "liSi", "password": "321"}
PS: For json operations, we recommend several useful json online tools for your reference:
Online JSON code verification, validation, beautification, and formatting tools:
Http://tools.jb51.net/code/json
JSONOnline formatting tool:
Http://tools.jb51.net/code/jsonformat
Online XML/JSON conversion tools:
Http://tools.jb51.net/code/xmljson
JsonCode Online formatting/beautification/compression/editing/conversion tools:
Http://tools.jb51.net/code/jsoncodeformat
Online json compression/escape tools:
Http://tools.jb51.net/code/json_yasuo_trans