例如
Thread.sleep(1000)
但match_group实例将包含id,name和xyz列。
现在选择match_group我也想要xyz列的值。
我们怎样才能得到?
任何帮助将不胜感激。
答案 0 :(得分:0)
您的el
表达式具有以下格式:" 选择作为标记 值在数组中&#34 ;.
选择 -part是绑定到new_g <- graph_from_data_frame(el, directed = FALSE, vertices = attrs)
的结果。因此,如果您将代码更改为以下内容:
ng-options
您的变量ng-model
将包含整个组对象,而不仅仅是id。
答案 1 :(得分:0)
我为此找到了解决方法,
我的html会照原样,
<select class="form-control" id="group_id" name="group_id"
ng-model="form.group_id" ng-options="match_group.id as match_group.name for match_group in match_groups"
required="" ng-change="getGroupWiseMatches()">
....some code
</select>
在js中,我将选中的条目作为
var found_record = $scope.match_groups.find(obj => obj.id === selected_id);
$scope.form.xyz = found_record.xyz;