1

我仅在缩小代码(生产)上收到此错误。当我在表单中添加“控制器”功能时创建了错误。请查看我的代码,也许你会看到一些错误。任何提示都会很有用;)

依赖项:“angular-formly”:“~7.1.2”,“angular-formly-templates-bootstrap”:“~6.1.0”,

我的控制器代码:

.controller('NSearchBoxOnResultsController', ($rootScope) ->
    @formFields =
      [
        type: 'form_with_own_classes'
        key: 'q'
        defaultValue: @resultAsValue
        templateOptions:
          type: 'string'
          label: ''
          placeholder: I18n.t('homepage.placeholder')
          wrapper_class: 'row input--primary modal__center-items search search_query'
          input_container_class: 'col-xs-12'
          onKeypress: ($viewValue, $modelValue, scope, event) =>
            if event?.which == 13
              @submit()
        controller: ($scope, $rootScope) =>
          @scope = $scope
          @rootScope = $rootScope
          @rootScope.$on('$locationChangeSuccess', (newValue, oldValue) =>
            if @scope.options?.formControl
              @hash = window.location.hash.split('/')
              @queryFromHash = @hash.slice(2, @hash.length).join('/')
              @resultAsValue = decodeURIComponent(@queryFromHash)
              @scope.options.formControl.$setViewValue(@resultAsValue)
              @scope.options.formControl.$rollbackViewValue()
          )
      ]

    @submit = =>
      window.location = "/search/#all/#{@search.q}"

    @
  )
4

1 回答 1

3

您需要显式注入 $rootScope:

代替($rootScope) -> {code...}

利用

['$rootScope', ($rootScope) -> {code...}]

否则,变量名隐含了“$rootScope”依赖项。由于在您的缩小角度期间 $rootScope 变为 $t 意味着您要注入不存在的 '$t' 。

google ng-annotate 会自动“解释”您的注射。

编辑:我不熟悉coffeescript,所以请多多包涵:)

于 2015-11-09T09:02:57.617 回答