私はAngularJSとWeb開発全般に不慣れなので、これはばかげた質問かもしれませんが、理解できません。
メインアプリがあります
/// <reference path="../../references.ts" />
angular.module("mainApp", [])
.config(($routeProvider: ng.IRouteProvider) => {
$routeProvider
.when("/", {
templateUrl: "/app/module/mainApp/partials/main.html",
controller: AppController,
//datacontext
controllerAs: "dc"
})
.when("/login", {
templateUrl: "/app/module/mainApp/partials/login.html",
controller: LoginController,
controllerAs: "dc",
})
})
.run(($rootScope: ng.IRootScopeService, $location: ng.ILocationService, AuthService) => {
$rootScope.$on("$routeChangeStart", (event, next, current) => {
if (!AuthService.IsLoggedIn()) {
if (next.templateUrl == "app/module/mainApp/partials/login") {
return;
} else {
$location.path("/login");
}
}
});
})
私の認証サービスは次のようになります。コンストラクターのアラートは呼び出されません
/// <reference path="../../../references.ts" />
class AuthService {
constructor(public ServiceManager: IServiceManager, public TokenHandler) {
alert("I am a constructor");
}
Login(loginRequest: Models.LoginRequest, successCallback) {
var params = {
username: loginRequest.username,
password: loginRequest.password
};
var service = this.ServiceManager.CallGetWithoutToken("http://url...", params);
service.success((data, status, headers, config) => {
this.TokenHandler.SetToken(data.replace(reg, ''));
});
};
IsLoggedIn() {
return this.TokenHandler.GetToken() != undefined;
}
}
angular.module("mainApp").factory("AuthService", () => AuthService.prototype);
そして最後に私のTokenHandlerはこれです
class TokenHandler {
token = undefined;
constructor() {
}
ClearToken() {
this.token = undefined;
};
SetToken(sessionToken: string) {
this.token = sessionToken;
};
GetToken() {
return this.token;
};
}
angular.module("mainApp").factory("TokenHandler", () => TokenHandler.prototype);
私の .ts ファイルはすべて references.ts にあり、.js ファイルを index.html に追加しました。
これを実行すると、undefined のメソッド "GetToken()" を呼び出せないというエラーが表示されます
AngularJS は私の TokenHandler を AuthService に注入すべきではありませんか?