0

我在一个页面上有 4 个选择下拉菜单。在每一个下面,我希望根据使用 angular-formly 的选择生成动态 HTML。

到目前为止我有这个:

ruleSelect.js.erb

angular.module('productsApp')
  .directive('ruleSelect', [
  function() {
    return {
      restrict: 'E',
      replace:  false,
      // require: 'ngModel',
      scope: {
        options: '=',
        ruleBldr: '='
      },
      templateUrl: "<%= asset_path('shared/templates/ruleSelect.html') %>",
      link: function(scope, element, attrs){
      }
    };
 }]);

ruleSelect.html.slim

select.form-control ng-model="value"
  option ng-repeat="field in options | fieldFilter:['templateOptions', 'label']" value="{{$index+1}}"
    | {{field.templateOptions.label}}

form
  formly-form fields="ruleBldr.form[value].fieldGroup"

但是在范围options上设置但是ruleBldr是空的。

网页

.row
  .col-md-offset-6.col-md-6 ng-repeat="obj in ruleB.formObjects"
    label.control-label () {{obj.fieldGroup[0].template}}
    rule-select options='obj.fieldGroup' ruleBldr="obj"
4

1 回答 1

1

valueinruleB.form[value]没有在任何地方定义。

如果表单应该基于<select>您需要添加ng-model到中选择的值来创建<select>。请注意,ng-model应该始终是一个对象。

link: function(scope, element, attrs){
   scope.selectModel ={}
}

select.form-control ng-model="selectModel.value"

formly-form fields="ruleBldr.form[selectModel.value].fieldGroup"

其中一些是猜测,因为问题描述很差。另外我不知道您的模板系统的正确 html 语法

我也不确定您是否需要从控制器传递到指令的初始值

于 2015-09-22T17:07:58.183 回答