angular http

来源:互联网 发布:马航mh370失联真相知乎 编辑:程序博客网 时间:2024/06/05 11:32

1.使用服务首先注册服务($http)

module.controller('In_theatersController',['$scope','$http',function ($scope,$http) {$scope.name = '北京电影学院1';}]);
2.使用http服务

module.controller('In_theatersController',['$scope','$http',function ($scope,$http) {$scope.name = '北京电影学院1';        $http.get('../app/datas/in_theaters.json').then(function (req) {console.log(ok);        console.log(req);}),function (err) {            console.log(err);}}]);

3../代表项目的根目录moviecat

../app/datas/in_theaters.json


原创粉丝点击