我正在引用像这样的数据库:
$scope.dbevent = $scope.env.database('test.event');
' test.event'数据库有多个字段。这是一个基本布局: How to include $wpdb in wordpress plugin?
如果我想创建一个下拉列表,只显示" Performed By"领域,我该怎么办?为了更加澄清,"执行者"数据填充在其他位置,并包含名称列表。我只需要将所有这些名字都放在选择列表中。
我假设使用了<select>
,但我不确定如何设置ng-options
部分
答案 0 :(得分:0)
您可以通过在控制器中填充数组来填充下拉列表,并使用ng-options对其进行迭代
<select ng-model="selectModel" ng-options="item for item in yourList" ></select>