首页 > 问答 > 正文
请教,angular什么版本是要传$scope参数啊?像 myApp.controller(‘MainController', function($scope, $http) { 这样。
我现在根据一本书用的是1.2版本,好像不需要传$scope啊,不知新版本是啥情况?不过我用ng-controller必须是=“ctrl as ctrl”这样,然后输出时这样:ctrl.submit(), ctrl.name 这么调用,而不能直接输出submit和name。
不太理解这个,望大神指教,谢谢!
PHPz2017-05-15 17:02:21
使用 as 之后,this 就相当于 $scope,你的用法是更好的,不用纠结。
as
this
$scope