define(['controllers/controllers'], function (controllers) {
'use strict';
controllers.controller('MyCtrl1', [function ($scope) {
console.log($scope); //这里为undefined
}]);
});
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
controllers.controller('MyCtrl1', ['$scope',function ($scope) {
}]);