Как установить динамическое имя модели в AngularJS?

Я хочу заполнить форму с некоторыми динамическими вопросами (скрипкаВот):

<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}}"]);
    };
}​

Все работает, за исключением того, что модель буквально отвечает на вопросы [& quot; {{question.Name}} & quot;] вместо оцененных ответов [& quot; GenderQuestion & quot;]. Как я могу установить название модели динамически?

Ответы на вопрос(4)

Ваш ответ на вопрос