如何在angularJS中保护我的JSON服务器数据?

时间:2015-12-08 06:33:33

标签: angularjs json

如何在angularJS中保护我的JSON服务器数据?

在Controller I中使用JSON服务器数据的URL,那么,我该如何从客户端保护它?

我的JSON服务器数据网址为http://www.w3schools.com/angular/customers.php

我的源代码是

<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="customersCtrl"> 

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td><a href="" ng-click="SuperFunction('{{x.Name}}')">{{ x.Country }}</a></td>
  </tr>
</table>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
    $http.get("http://www.w3schools.com/angular/customers.php")
    .then(function (response) { $scope.names = response.data.records; });
    $scope.SuperFunction = function (id) {
        alert(id);
    };
});
</script>

</body>
</html>

1 个答案:

答案 0 :(得分:3)

您无法保护您的前端代码,用户/黑客可以看到它!

保护信息的最佳方式是服务器端身份验证(登录)

但api和api调用(通过开发工具)总是可见的!