angularJs中json数据转换与本地存储的实例
程序员文章站
2022-06-20 17:51:59
1.html:把json对象转换成json字符串
1.html:把json对象转换成json字符串
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <script src="angular.min.js"></script> </head> <body> <div ng-app="module" ng-controller="ctrl"> {{data}} </div> <script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', function ($scope) { $scope.data = {'name': '泠泠在路上'}; //把json对象转换成json字符串 localstorage.setitem('data', angular.tojson($scope.data)); }]); </script> </body> </html>
2.html:字符串转换成json对象
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <script src="angular.min.js"></script> </head> <body> <div ng-app="module" ng-controller="ctrl"> {{data.name}} </div> <script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', function ($scope) { //alert出字符串 alert(localstorage.getitem('data')); //字符串转换成json对象 $scope.data =angular.fromjson(localstorage.getitem('data')); }]); </script> </body> </html>
3.html字符串转换成json对象
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <script src="angular.min.js"></script> </head> <body> <div ng-app="module" ng-controller="ctrl"> {{data.username}} </div> <script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', function ($scope) { //字符串转换成json对象 $scope.data = angular.fromjson('{"username":"泠泠在路上"}'); }]); </script> </body> </html>
以上这篇angularjs中json数据转换与本地存储的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 大家都长大了
推荐阅读
-
angularJs中json数据转换与本地存储的实例
-
angularJs中json数据转换与本地存储的实例
-
php中JSON的使用与转换_php实例
-
浅析Js(Jquery)中,字符串与JSON格式互相转换的示例(直接运行实例)_jquery
-
浅析Js(Jquery)中,字符串与JSON格式互相转换的示例(直接运行实例)
-
浅析Js(Jquery)中,字符串与JSON格式互相转换的示例(直接运行实例)_jquery
-
Java中字节流与基本数据类型如何转换的实例代码的分析
-
关于AngularJs数据的本地存储实例详解
-
Java中字节流与基本数据类型如何转换的实例代码的分析
-
关于AngularJs数据的本地存储实例详解