cari

Rumah  >  Soal Jawab  >  teks badan

angular.js - angular route controller $http 请求两次

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_u1582phpcn_u15822744 hari yang lalu493

membalas semua(2)saya akan balas

  • 大家讲道理

    大家讲道理2017-05-15 16:59:18

    Maksud anda:

    console.log(self)

    telah dicetak dua kali?

    balas
    0
  • 世界只因有你

    世界只因有你2017-05-15 16:59:18

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

    balas
    0
  • Batalbalas