- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已使用此处概述的步骤将 Angular 5 应用程序移植到 Angular Universal:https://angular.io/guide/universal
我正在尝试移植文档和窗口的一些用途。它构建得很好,但现在我遇到了这个运行时错误:
ERROR { Error: Uncaught (in promise): Error: StaticInjectorError[LayoutDirective -> ElementRef]:
StaticInjectorError(Platform: core)[LayoutDirective -> ElementRef]:
NullInjectorError: No provider for ElementRef!
我的一项 Karma 测试显示了类似的错误:
Chrome 63.0.3239 (Mac OS X 10.13.2) MyComponent should create FAILED
Error: StaticInjectorError(DynamicTestModule)[MatIcon -> ElementRef]:
StaticInjectorError(Platform: core)[MatIcon -> ElementRef]:
NullInjectorError: No provider for ElementRef!
at _NullInjector.webpackJsonp.../../../core/esm5/core.js._NullInjector.get Users/project/node_modules/@angular/core/esm5/core.js:994:1)
我相信这是破坏代码的代码(旧版本已注释掉);
@Injectable()
export class MyService {
@ViewChild('head') headEl: ElementRef;
...
return Observable.create((observer: Observer<boolean>) => {
// const node = document.createElement('script');
const node = this._renderer2.createElement('script');
node.src = this.url;
node.type = 'text/javascript';
node.charset = 'utf-8';
// document.getElementsByTagName('head')[0].appendChild(node);
this._renderer2.appendChild(this.headEl, node);
node.onload = () => {
observer.next(true);
observer.complete();
};
});
编辑:现在我看到此错误:
Failed: _this._renderer2.createElement is not a function
TypeError: _this._renderer2.createElement is not a function
为什么 renderer2.createElement 不是一个函数?
最佳答案
我找到了解决方案。您实际上无法直接在服务中使用 Renderer2,因此我使用了此处的 RendererFactory2 建议:Renderer cannot be used in Service?
然后我改变了这一行:
this.renderer2.appendChild(this.headEl, node);
对此:
this.renderer2.appendChild(this._document.head, node);
关于node.js - Angular Universal 和 ElementRef/Renderer2.createElement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48195991/
请帮助我了解如何在 Angular Universal 中使用服务器渲染。 我做了什么。我访问了 Angular Universal 官方网站。设置 Node.js。下载推荐项目 Angular 2
我正在研究使用 explicit universes 的可能性用于在 Coq 中构建固定的 Universe 层次结构。在构建它时使用常量 (2, 3, 4) 的尝试失败了:最后,所有组合仍然类型检查
我查看了 Universal Analytics,但没有找到问题的正确答案。 如何将这一行从旧的 Analytics 更新到新的 Universal Analytics? _gaq.push(["_s
我在 IIS 中部署 angular 通用应用程序时遇到问题。在 angular 通用中,创建了两个 dist 文件夹,一个是客户端的 dist,另一个是 dist-server,当我尝试托管时,我提
我使用@ng-toolkit/universal 作为我的服务器端渲染方法。一切正常,没有我的图像。我正在动态地获取它们。因此,当用户没有头像时,会显示一个占位符图像。因此我正在使用这个函数: ver
-编译应用程序后,我多次收到此错误 enter image description here 文本错误: 错误错误 at XMLHttpRequest.send (C:\Users\seva-
我正在Win10中使用VS2015开发通用应用程序。模拟器和android模拟器运行正常。 但是,当我启动Windows Phone Mobile模拟器时,该模拟器运行并显示“操作系统正在启动”,然后
我正在实现一个路由保护(CanActivate 接口(interface)),我需要在某些条件下重定向到未找到的页面。这可以通过以下语句来实现: if (isNode){ let res : Resp
我偶然发现了一个奇怪的情况,其中有 reflect.runtime.universe._进口原因reflect.runtime.universe.RuntimeClass推断它似乎在哪里Nothing
每当我在我的应用程序中加载图像时,我的 logcat 都会给我这条消息。 04-09 19:09:59.241: W/ImageLoader(276): Try to initialize Image
我正在尝试添加包但出现错误 meteor add universe:carousel => Errors while adding packages: 选择软件包版本时: error: Confli
所以我一直在尝试将我的应用程序转换为 angular universal,并且在大多数情况下都很好。但我之前读过一些“陷阱”:https://github.com/onespeed-articles/
我有一个指令,使文本输入到谷歌的地方自动完成输入,看起来像: import { Directive, AfterViewInit , Output, EventEmitter, NgZone, Ele
大约一年前,我们升级到了通用Analytics(分析),由于升级我们的站点搜索并没有在我们的Analytics(分析)帐户中显示关键字,甚至没有跟踪其使用次数。 作为营销人员,这是一个问题,因为我想知
我正准备使用 Angular Universal 为我的 Angular 7 应用程序设置 SSR。我遵循了官方文档( https://angular.io/guide/universal )。我到了
在应用程序关闭(暂停)后,我正在将一个不大于 10KB 的数据文件写入 RoamingFolder。该应用程序在开发桌面和 Surface 2 上运行,两者都登录到同一个 Microsoft 帐户。但
This question already has answers here: Page Navigation using MVVM in Store App (5个答案) 6年前关闭。 使用MVVM
我尝试安装iOS-Universal-Framework 。尝试运行instalation shell screept从这个存储库并始终获取消息: iOS Real Static Framework
这就是我目前初始化 chromedriver 的方式 System.setProperty("webdriver.chrome.driver", "C://chromedriver.exe"); 但是
您好,我在尝试运行 perl 脚本时遇到以下错误: pc:~/Phd/lenovo/programs/vep/scripts/variant_effect_predictor$ perl varian
我是一名优秀的程序员,十分优秀!