angular.js - angular route controller $http 请求两次
phpcn_u1582
phpcn_u1582 2017-05-15 16:57:18
0
2
488
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

membalas semua(2)
大家讲道理

Maksud anda:

console.log(self)

telah dicetak dua kali?

世界只因有你

Itu mungkin kerana anda memetik mctrl sekali lagi pada halaman Alih keluar ng-controller="mctrl" dan cuba

Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan