Angular JS&TypeScript-错误:ng:areq错误参数"自变量'XXXXXX

Angular JS & TypeScript - Error: ng:areq Bad Argument "Argument 'XXXXXX' is not a function, got undefined"

本文关键字:错误 quot 自变量 XXXXXX 参数 areq TypeScript- JS Angular ng amp      更新时间:2023-09-26

继续获取标题中指定的错误。

我将模型和控制器拆分为单独的文件,分别存储在模型和控制器目录下。

当我试图将它们连接起来时,我遇到了一个错误,说"ng:areq Bad Argument"Argument"rightPaneCtrl'不是函数,未定义"。

我的代码出了什么问题?

index.html↓

<html ng-app="rightpaneMVC" data-framework="typescript">
<head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="//code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
    <!--<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.min.js"></script>
    <script src="//code.jquery.com/ui/1.9.2/jquery-ui.min.js"></script>
    <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>-->
    <style>
        .item_list {
            display: flex;
            flex-direction: row;
            padding-left: 0;
        }
            .item_list > li {
                list-style-type: none;
                cursor: pointer;
                border: 1px solid black;
                padding: 0.3rem;
                width: 100px;
                margin-right: 0.2rem;
            }
    </style>
    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
</head>
<body>
    <div id="tab-category" ng-controller="rightPaneCtrl">
        <!--<ul>
            <li ng-repeat="tab in vm.tabs track by $index" ng-click="vm.handleTabClick(tab,$index)">
                <a href="#{{ tab.tabID }}">{{ tab.name }}{{ tab.tabID }}</a>
                <span ng:class="{true:'ui-icon ui-icon-circle-close ui-closable-tab', false:''}[$index!=0]"></span>
            </li>
        </ul>-->
        <hr />
        <tabset ng-init="startActive = true">
            <tab ng-repeat="tab in vm.tabs track by $index" active="startActive">
                <tab-heading ng-switch="tab.isClosable">
                    <div ng-switch-when=true>
                        {{ tab.name }} <a ng-click="vm.handleTabClick($index)" href=''><i class="icon-remove"></i></a>
                    </div>
                    <div ng-switch-when=false>
                        {{ tab.name }}
                    </div>
                </tab-heading>
                <ul class="item_list" ng-switch="tab.categoryTypeString">
                    <li ng-switch-when="DAI" ng-repeat="item in tab.items" ng-click="vm.handleItemClick(item)">
                        <img ng-src="{{item.thumbnailPath}}"><br />
                        <p align="center">{{ item.categoryName }}</p>
                    </li>
                    <li ng-switch-when="CHU" ng-repeat="item in tab.items" ng-click="vm.handleItemClick(item)">
                        <img ng-src="{{item.thumbnailPath}}"><br />
                        <p align="center">{{ item.categoryName }}</p>
                    </li>
                    <li ng-switch-default ng-repeat="item in tab.items">
                        <img ng-src="{{item.thumbnailPath}}"><br />
                        <p align="center">{{ item.categoryName }}</p>
                    </li>
                </ul>
            </tab>
        </tabset>

        <!--<div ng-repeat="tab in vm.tabs track by $index" id="{{ tab.tabID }}">
                <ul class="item_list" ng-switch="tab.categoryTypeString">
                    <li ng-switch-when="DAI" ng-repeat="item in tab.items" ng-click="vm.handleItemClick(item)"> {{ item.categoryName }}</li>
                    <li ng-switch-when="CHU" ng-repeat="item in tab.items" ng-click="vm.handleItemClick(item)"> {{ item.categoryName }}</li>
                    <li ng-switch-default ng-repeat="item in tab.items"> {{ item.categoryName }}</li>
                </ul>
            </div>-->
    </div>
    <script src="//code.angularjs.org/1.4.1/angular.min.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.4.0/ui-bootstrap-tpls.min.js"></script>
    <script src="Application.js"></script>
    <script src="controllers/RightPaneCtrl.js"></script>
</body>
</html>

应用程序.ts↓

module rightpane {
    'use strict';
    angular.module('rightpaneMVC', ['ui.bootstrap']);
    angular.module('rightpaneMVC').controller('rightPaneCtrl', RightPaneCtrl);
} 

右窗格Ctrl.ts↓

 module rightpane {
        'use strict';
        export class RightPaneCtrl {        
            public static $inject = ['$scope', '$http'];        
            private mModel = new RightPaneTabList;        
            public constructor(
                private $scope: any,
                private $http: ng.IHttpService) {
                $scope.vm = this;        
            }        
            public get tabs(): Tab[] {
                return this.mModel.tabs;
            }        
            handleItemClick(aItem: Item): void {
                console.log('Item clicked');
                this.mModel.addCategory(aItem);
            }        
            handleTabClick(tabIndex: number): void {
                console.log('Tab clicked');
                this.mModel.tabs.splice(tabIndex, 1);
            }        
        }        
    } 

目录结构↓

root
    |-index.html
    |-controllers
        |-RightPaneCtrl.ts

因此,我们在另一个答案上取得了一些进展。但现在新的问题出现了,OP创造了这个庞然大物

http://plnkr.co/edit/WLH1GgLlpE7nek1poWnA?p=preview

带有此错误消息:

类型错误:右侧窗格。RightPaneTabList不是函数在新的RightPaneCtrl(RightPaneCtrl.js:14)…

有更新的部分工作版本。问题是。。。缺少加载到浏览器中的组件。。。当我们创建像这样的文档时

enums/ECategoryType.jsmodels/Item.jsmodels/Tab.jsmodels/RightPaneTabList.js控制器/RightPaneCtrl.jsApplication.js

我们必须将所有这些(并按正确顺序)附加到页面代码中:

<script src="enums/ECategoryType.js"></script>
<script src="models/Item.js"></script>
<script src="models/Tab.js"></script>
<script src="models/RightPaneTabList.js"></script>
<script src="controllers/RightPaneCtrl.js"></script>
<script src="Application.js"></script> 

(缺少图像,但应用程序应该启动)

有两个问题。有一个工作示例,显示了以下操作中的更改(简化版本,只是为了使其运行)

首先,如果我们想使用一些类。。它已经被加载了,所以我们必须更改这些脚本的顺序

// here we must make JS aware about our Ctrl
<script src="controllers/RightPaneCtrl.js"></script>
<script src="Application.js"></script> 
// here it would be too late
// <script src="controllers/RightPaneCtrl.js"></script>

此外,因为我们的控制器有模块/名称空间:

module rightpane {        
    export class RightPaneCtrl {
    ...

我们必须为其指定全名:

angular.module('rightpaneMVC')
    // instead of this
    // .controller('rightPaneCtrl', RightPaneCtrl);
    // wee need this
    .controller('rightPaneCtrl', rightpane.RightPaneCtrl);

在此处检查