gpt4 book ai didi

javascript - 未捕获错误 : [ng:areq] Argument 'fn' is not a function, 未定义

转载 作者:行者123 更新时间:2023-11-30 12:25:21 24 4
gpt4 key购买 nike

您好,我正在尝试使用 Typescript 构建我的第一个 Angular 应用程序,但我似乎无法正确绑定(bind) Controller 。

这是我的 typescript 代码:

module App {
var modules: string[] = ["App.Person"];
angular.module('App', modules)
.run([]);
}

module App.Person {
angular.module('App.Person', []);
}

module App.Person {
angular.module("App.Person")
.controller('PersonCtrl', PersonCtrl);

interface IPersonScope extends ng.IScope {
fullName: string;
}

class PersonCtrl{
public $scope: IPersonScope;

static $inject = ['$scope'];
constructor($scope: IPersonScope) {
this.$scope = $scope;
this.init();
}
init() : void {
this.$scope.fullName = 'Justin S.';
}
}
}

这是我的观点:

 <article ng-app="App">
<section ng-controller="PersonCtrl">
<p ng-bind="fullName"></p>
</section>
</article>

我收到以下错误:

Uncaught Error: [ng:areq] Argument 'fn' is not a function, got undefined

我该如何解决这个问题?

最佳答案

您很可能错过了在布局页面中包含 Controller js 文件(例如:<script src='path/angularController.js'></script>)。如果没问题,请仔细检查您的 html 中是否有多个 ng-app。

关于javascript - 未捕获错误 : [ng:areq] Argument 'fn' is not a function, 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29602797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com