您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“angularJs中json數(shù)據(jù)轉(zhuǎn)換與本地存儲的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“angularJs中json數(shù)據(jù)轉(zhuǎn)換與本地存儲的示例分析”這篇文章吧。
1.html:把json對象轉(zhuǎn)換成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對象轉(zhuǎn)換成json字符串 localStorage.setItem('data', angular.toJson($scope.data)); }]); </script> </body> </html>
2.html:字符串轉(zhuǎn)換成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')); //字符串轉(zhuǎn)換成json對象 $scope.data =angular.fromJson(localStorage.getItem('data')); }]); </script> </body> </html>
3.html字符串轉(zhuǎn)換成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) { //字符串轉(zhuǎn)換成json對象 $scope.data = angular.fromJson('{"username":"泠泠在路上"}'); }]); </script> </body> </html>
以上是“angularJs中json數(shù)據(jù)轉(zhuǎn)換與本地存儲的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。