동적 질문으로 양식을 채우고 싶습니다 ( 여기에 바이올린 ).
<div ng-app ng-controller="QuestionController">
<ul ng-repeat="question in Questions">
<li>
<div>{{question.Text}}</div>
<select ng-model="Answers['{{question.Name}}']" ng-options="option for option in question.Options">
</select>
</li>
</ul>
<a ng-click="ShowAnswers()">Submit</a>
</div>
function QuestionController($scope) {
$scope.Answers = {};
$scope.Questions = [
{
"Text": "Gender?",
"Name": "GenderQuestion",
"Options": ["Male", "Female"]},
{
"Text": "Favorite color?",
"Name": "ColorQuestion",
"Options": ["Red", "Blue", "Green"]}
];
$scope.ShowAnswers = function()
{
alert($scope.Answers["GenderQuestion"]);
alert($scope.Answers["{{question.Name}}"]);
};
}
평가 된 Answers [ "GenderQuestion"] 대신 모델이 문자 그대로 Answers [ "{{question.Name}}"] 인 것을 제외하고 모든 것이 작동합니다. 모델 이름을 어떻게 동적으로 설정할 수 있습니까?