我只是在构建一个简单的应用程序来学习AngularJS
,并且在切换视图时无法更新变量。这是我到目前为止所拥有的:
function routeConfig($stateProvider, $urlRouterProvider) {
$stateProvider
.state('home', {
url: '/',
templateUrl: 'app/main/main.html',
controller: 'MainController',
controllerAs: 'main'
})
.state('team', {
url: '/team',
templateUrl: 'app/main/team.html',
controller: 'MainController',
controllerAs: 'main'
})
$urlRouterProvider.otherwise('/');
}
这是我的控制器的一部分:
function MainController($timeout, webDevTec, toastr, $resource, $scope) {
var vm = this;
var GetTeam = $resource('https://apisite.com/api_endpoint/:teamId', {teamId: '@id'});
vm.teamName = '';
function getTeamInfo(id) {
var teamObj = GetTeam.get({teamId: id});
$timeout(function(){
vm.teamName = teamObj["name"];
},100)
};
vm.getTeamInfo = getTeamInfo;
}
然后在我的 main.html 中,我通过 ng-click 调用 getTeamInfo:
<ul class="list-group">
<li class="list-group-item" ng-repeat="team in main.teams" ng-click="main.getTeamInfo(team.id)"><a href="#/team">{{ team.name }}</a></li>
</ul>
单击该链接将带您进入 team.html:
<div class="row">
<div class="col-sm-12">
<h3>{{ main.teamName }}</h3>
<ul class="list-group">
. . .
</ul>
</div>
</div>
由于某种原因“ main.teamName
”没有更新。我也尝试过这种$scope.$apply(function(){vm.teamName = teamObj["name"]}
方法,但没有运气。我也在console.log(teamObj["name"])
之前vm.teamName
和'console.log(vm.teamName)'
之后做了'',看看我是否得到了预期的结果,我做到了。我现在只是不知道为什么它不更新新视图。
感谢您的洞察力、耐心和时间!
更新 1
我还尝试在我的变量($scope.teamName)上使用 $scope 并使用 $scope.$apply(function(){$scope.teamName = teamObj["name"]}) 没有运气。
更新 2
我也试过叫 $scope.$apply(); 在 'vm.teamName = teamObj["name"]' 之后没有运气