angular.js - angular route controller $http 请求两次
phpcn_u1582
phpcn_u1582 2017-05-15 16:57:18
0
2
487
app.config(['$routeProvider', function($routeProvider){
    $routeProvider.when('/', {
        templateUrl: tplPath + '/posts.html',
        controller: 'mctrl'
    });
}]);

app.controller('mctrl', ['$scope', '$http', '$log', handleMctrl]);

function handleMctrl($scope, $http, $log) {
    var self = this;
    console.log(self);
    var resp = $http.get('/post/new');

    resp.success(function (data, status, headers, config) {
        $log.debug(data);
        self.data = data;
    });
};

会请求 /pot/new 两次

phpcn_u1582
phpcn_u1582

全部回复(2)
大家讲道理

你的意思是:

console.log(self)

被打印了两次?

世界只因有你

那大概是因为你在页面又引用了一次mctrl ,去掉ng-controller="mctrl" 试试

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板