使用object属性绑定ng-options选择的值

时间:2017-02-27 07:04:55

标签: javascript angularjs

我正在尝试使用选定的值绑定对象的属性。我有以下对象。

  $scope.data = {    
   sectionQs: $scope.questions, 
   selectedQuestion: ''
  }

我想根据函数的返回值设置所选值,该值将是下拉sectionQs值之一。像

$scope.data.selectedQuestion = returnedValue;

这里的returnedValue是一个对象,要绑定的值的结构为returnedValue.data.string。试图在UI中这样绑定。

 <select ng-model="data.selectedQuestion" ng-options="question.data.string for question in data.sectionQs"></select>

此处所选值即使在设置后仍保持为空。当我在调试器中看到时,selectedQuestion属性会填满,但它不会显示在UI中。

0 个答案:

没有答案