gpt4 book ai didi

javascript - Angular 2 : Promise rejection: alertify is not defined

转载 作者:搜寻专家 更新时间:2023-10-30 21:24:25 25 4
gpt4 key购买 nike

我试图让这个 ( https://chsakell.com/2016/01/01/cross-platform-single-page-applications-with-asp-net-5-angular-2-typescript/ ) 教程/示例单页应用程序在我的机器(Visual Studio 2015、Win 7 Prof、Chrome 浏览器)上运行,并在尝试时在我的浏览器控制台中出现以下运行时错误打开相册页面:

platform-browser.umd.js:937 Error: Uncaught (in promise): ReferenceError: alertify is not defined
at resolvePromise (zone.js:558)
at zone.js:535
at ZoneDelegate.invoke (zone.js:332)
at Object.onInvoke (core.umd.js:9245)
at ZoneDelegate.invoke (zone.js:331)
at Zone.run (zone.js:225)
at zone.js:591
at ZoneDelegate.invokeTask (zone.js:365)
at Object.onInvokeTask (core.umd.js:9236)
at ZoneDelegate.invokeTask (zone.js:364)BrowserDomAdapter.logError @ platform-browser.umd.js:937ExceptionHandler.call @ core.umd.js:4392next @ core.umd.js:9971schedulerFn @ core.umd.js:9168SafeSubscriber.__tryOrUnsub @ Subscriber.ts:240SafeSubscriber.next @ Subscriber.ts:192Subscriber._next @ Subscriber.ts:133Subscriber.next @ Subscriber.ts:93Subject._finalNext @ Subject.ts:154Subject._next @ Subject.ts:144Subject.next @ Subject.ts:90EventEmitter.emit @ core.umd.js:9156onError @ core.umd.js:9394onHandleError @ core.umd.js:9266ZoneDelegate.handleError @ zone.js:336Zone.runGuarded @ zone.js:242_loop_1 @ zone.js:508drainMicroTaskQueue @ zone.js:515ZoneTask.invoke @ zone.js:437

zone.js:484 Unhandled Promise rejection: alertify is not defined ; Zone: angular ; Task: Promise.then ; Value: ReferenceError: alertify is not defined(…) ReferenceError: alertify is not defined
at new NotificationService (http://localhost:9823/lib/spa/core/services/notificationService.js:14:26)
at AppView._View_Albums_Host0.createInternal (Albums.ngfactory.js:15:35)
at AppView.create (http://localhost:9823/node_modules/@angular/core//bundles/core.umd.js:12439:25)
at ComponentFactory.create (http://localhost:9823/node_modules/@angular/core//bundles/core.umd.js:9047:40)
at ViewContainerRef_.createComponent (http://localhost:9823/node_modules/@angular/core//bundles/core.umd.js:8354:49)
at eval (http://localhost:9823/node_modules/@angular/core//bundles/core.umd.js:10295:33)
at ZoneDelegate.invoke (http://localhost:9823/node_modules/zone.js/dist/zone.js:332:29)
at Object.onInvoke (http://localhost:9823/node_modules/@angular/core//bundles/core.umd.js:9245:45)
at ZoneDelegate.invoke (http://localhost:9823/node_modules/zone.js/dist/zone.js:331:35)
at Zone.run (http://localhost:9823/node_modules/zone.js/dist/zone.js:225:44)

有问题的 notificationService.ts。请注意,这在类外部声明了 alertify 以避免编译时通知:

import { Injectable } from '@angular/core';

declare var alertify: any;

@Injectable()
export class NotificationService {
private _notifier: any = alertify;

// irrelevant other code
}

生成的 notificationService.js。似乎没有对应于“declare var alertify: any;”。可能没问题,因为 alertify 是一个外部 JavaScript 库,但仍然很奇怪:

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1 = require('@angular/core');
var NotificationService = (function () {
function NotificationService() {
this._notifier = alertify;

// irrelevant other code
}());

我正在使用来自 github 的项目的最新代码:https://github.com/chsakell/aspnet5-angular2-typescript

我不得不在 global.json 中将 .NET Core 版本从 1.0.0-preview1-002702 更改为 1.0.0-preview2-003121。

遵循 github 自述文件中 Visual Studio 2015 的所有安装说明。

我在程序包管理器控制台中另外运行了以下命令:'bower 安装 alertify.js

有一点看起来很奇怪,Bower (0.3.11) 下的 alertify.js 和 NPM (1.0.12) 下的 alertify.js 版本不匹配。我尝试在 Bower.json 中将 alertify 版本更改为 1.0.12 并再次安装 alertify,但这失败了:

bower alertify.js#1.0.12  ENORESTARGET No tag found that was able to satisfy 1.0.12

在运行 cmd "npm install"时,为 NPM 更改 package.json 中的版本也会失败:

ERR!
version not found: alertify.js@0.3.11

有什么问题吗?我对所有这些 Material 都很陌生,所以任何关于正在发生的事情的解释都会有所帮助。

更新:添加从 http://alertifyjs.com/ 下载的 .js 和 .css 文件到 wwwroot/lib 文件夹并更新 index.cshtml 中的样式表引用可阻止错误出现并使通知框显示得很漂亮。我觉得这仍然是一个次优的解决方案,因为这种方法需要我手动更新 alertify 文件,而不是充分利用 bower 和 NPM 的全部潜力。如果您对如何改进此解决方案有任何建议,请告诉我。

最佳答案

我也看过那个教程,对我来说问题是 alertify 已停止,因此即使 bower 识别它,也不会下载 .js 文件。你应该谷歌 alertify.js,手动下载脚本并将它们放入你的应用程序将查找它们的文件夹中。这为我解决了问题。

此外,在您熟悉所有事物如何协同工作之前(尤其是在 VS 中的工具得到改进之前),我建议改用 VS Code。使用它可以更轻松地启动和运行该教程。

关于javascript - Angular 2 : Promise rejection: alertify is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39268300/

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