答案 0 :(得分:1)
您必须打印ng模型,而不是阵列:
console.log($scope.selectTopic);
console.log($scope.selectDept);
console.log($scope.selectUser);
希望有帮助=)
答案 1 :(得分:0)
在表单中使用一个对象作为模型,然后在该一个对象中拥有所有用户输入,这使得发送到服务器或重置表单变得简单
$scope.userInput={}
<select ng-model="userInput.selectTopic" ng-change="changedTopic(userInput.selectTopic)" ng-options='...'>
<select ng-model="userInput.selectDept" ng-change="changedDepartment(userInput.selectDept)" ng-options='...'>
要查看此工作,请暂时在您的视图中添加以下内容
<pre>{{userInput|json}}</pre>