我是Angular的新手,我尝试编写一个页面来创建团队并为这些团队分配玩家。
我添加了select
标记来选择要添加到团队中的玩家。我创建了一个Fiddle with the problem。
我认为有一个范围问题,但我不知道它可能是什么。
有什么想法吗?
答案 0 :(得分:0)
问题是您使用ng-model="selectedPlayer[team.name]"
而未在范围内设置selectedPlayer
。要像这样使用它,首先需要创建变量$scope.selectedPlayer = {};
工作jsfiddle:http://jsfiddle.net/L721ap6d/1/