angular.js - angular route controller $http 請求兩次
phpcn_u1582
phpcn_u1582 2017-05-15 16:57:18
0
2
489
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" 試試

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板