We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
一般的在ng-model可以直接使用变量,比如ng-model="var1" 但是在使用ui-select的时候却不行,它要求的ng-model必须是一个object,比如$scope.dataSet = {}; $scope.dataSet.var = {}; ng-model="dataSet.var" 作者的解释在这里:angular-ui/ui-select#18
The text was updated successfully, but these errors were encountered:
a better explanation: https://github.com/angular/angular.js/wiki/Understanding-Scopes
Sorry, something went wrong.
No branches or pull requests
一般的在ng-model可以直接使用变量,比如ng-model="var1"
但是在使用ui-select的时候却不行,它要求的ng-model必须是一个object,比如$scope.dataSet = {};
$scope.dataSet.var = {};
ng-model="dataSet.var"
作者的解释在这里:angular-ui/ui-select#18
The text was updated successfully, but these errors were encountered: