代码之家  ›  专栏  ›  技术社区  ›  jrocc

typeerror:xxx未用angularjs$inject属性注释定义

  •  1
  • jrocc  · 技术社区  · 6 年前

    角度用户界面网格获取单元格值

    我使用的是角网格用户界面,我尝试使用getcellvalue根据行和列获取单元格的值。

    我明白了

    无法获取未定义或空引用的属性“$$Undefined”

    如何根据行和列从单元格中获取vaule?

    angular.module('app', ['ngAnimate', 'ngTouch', 'ui.grid','ui.grid.resizeColumns','ui.grid.pinning','ui.grid.grouping',
        'ui.grid.moveColumns','ui.grid.exporter','ui.grid.selection','ui.grid.selection', 'ui.grid.cellNav']).controller('MainCtrl', MainCtrl);
    
        MainCtrl.$inject = ['$http', 'uiGridConstants','$interval','$scope'];
    
        function MainCtrl($http, uiGridConstants,$scope) {
            var vm = this;
            vm.gridOptions = { //vm
              exporterMenuCsv: true,
              enableGridMenu:true,
              onRegisterApi: function(gridApi){
                vm.gridApi = gridApi; //vm
              }
            };
    
            $http.get('/getProjects')
              .then(function(response) {
                //Loop through the response
                //If the vaule is 255 set the color of the cell to ect.
                var responseData = response.data
                  console.log(vm.gridApi.grid.getCellValue(1,1));
                  //console.log(responseData[i].Iuk)
             });
          }
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   georgeawg    6 年前

    注入数组与函数的参数不匹配:

    MainCtrl.$inject = ['$http', 'uiGridConstants','$interval','$scope'];
    
    function MainCtrl($http, uiGridConstants,$scope) {
    

    从文档中:

    $inject 属性批注

    使用这种类型的注释时,请注意保持注释数组与函数声明中的参数同步。

    — AngularJS Developer Guide - Dependency Injection

    这个问题可以通过使用 Implicit Annotation . 类似工具 ng-annotate 允许您在应用程序中使用隐式依赖项批注,并在缩小之前自动添加数组批注。