Maison > Questions et réponses > le corps du texte
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 两次
世界只因有你2017-05-15 16:59:18
C'est probablement parce que vous avez cité à nouveau mctrl sur la page. Supprimez ng-controller="mctrl" et essayez