當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


AngularJS angular.toJson()用法及代碼示例


AngularJS中的angular.toJson()函數用於將javascript對象序列化為JSON格式的字符串。它使用javascript對象並返回JSON字符串。

用法:

angular.toJson(object)

例:


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"> 
    </script> 
    <title> 
      angular.toJson() 
  </title> 
</head> 
  
<body ng-app="app" 
      style="text-align:center"> 
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      angular.toJson() 
  </h2> 
    <div ng-controller="geek"> 
        <button ng-click="showAlert()"> 
          Click it!</button> 
    </div> 
    <script> 
        var app = angular.module("app", []); 
        app.controller('geek', ['$scope', 
                         function($scope) { 
                             
            $scope.showAlert = function() { 
                var string = { 
                    'Name':'Quick sort', 
                    'Type':'sorting' 
                }; 
                alert(angular.toJson(string)); 
            } 
        }]); 
    </script> 
</body> 
  
</html>

輸出:
點擊前:
toJson
點擊後:
toJson



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 AngularJS | angular.toJson() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。