当我尝试在ngOnInit中的角应用程序上使用区域时,我在第11行设置了一个断点,得到函数区域(父区,zoneSpec){.},但是在开始时返回未定义的值?这是我的代码:()
export class AppComponent implements OnInit{
ngOnInit(): void {
// RootZone is ambient and it is
indistinguishable from no Zone.
console.dir(Zone)
let rootZone =
我完全遵循了这个教程:
但是当我使用crdova build browser时,我得到了这个错误
ERROR Error: Uncaught (in promise): SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL 'file:///C:/Users/sven/Projects/expense-calculator/platforms/browser/www/' cannot be created in a
这些都是错误:
http://d2kt888p40scfz.cloudfront.net/js/ista.js#bpiopmneeadfapifejkfpahpljkicpik Failed to load resource: net::ERR_NAME_NOT_RESOLVED
core.js:3121Angular is running in the development mode. Call enableProdMode() to enable the production mode.
http://d2xvc2nqkduarq.cloudfront.net/zr/js/adrns.j
public getLatLongs():Promise<any>{
let assurance:Promise<any>=new Promise<any>(function(resolve,reject){
let request=new XMLHttpRequest();
request.onload=function(){
if(request.status==200){
resolve(request.response);
}else{
reject(new Error("Cann
受影响的包问题是由包引起的
描述
I am using ngxs store in my angular application for storage management. Recently I am seeing below weird console error in my browser when I switch between various angular components while dispatching action to store
'Error ocurred while serializing the store value, value not upd
对不起,不幸的是,这个问题没有太多的细节,因为我不确定需要什么来解释这个问题。首先,我尝试在我的Angular应用程序中使用ng2-ace-editor。我的设置不是标准的。细节在另一个相关的问题中-
总而言之,如果我在顶层html中显式地包含ace.js,那么一切都会正常进行。但我不想这样做,因为我只想使用由Angular创建的包。但是如果我只使用包,那么当我运行应用程序时就会得到以下错误:
ace.js:1 Unable to infer path to ace from script src, use ace.config.set('basePath', 'pa
我正在尝试用Okta为我的Angular 7应用程序实现SSO。我已经安装了@okta/angular和所有的依赖项。如果用户还没有登录到Okta,它会被重定向到okta。一旦我输入我的凭证并重定向回angular,我就会遇到一个问题,如下所示。 ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'id_token'
Error: Cannot match any routes. URL Segment: 'id_token'
at Appl
如何找出受影响的组件名称?我真的不明白为什么angular说"class_1“是组件名称。我使用的是Angular 7.0.0,并且我正在进行重构。(6个组件组成一个新模块)
Error: Uncaught (in promise): Error: Component class_1 is not part of any NgModule or the module has not been imported into your module.
Error: Component class_1 is not part of any NgModule or the module has
我正在尝试开发一个应用程序使用离子4,角度6,Nodejs 10,并需要整合谷歌地图。当我运行我的应用程序时,我总是在开发工具浏览器控制台- [Browser][cordova.js][xhrStatusChangeHandler] Could not XHR config.xml: Not Found中看到这个错误。最后复制了完整的控制台。
以下是我的代码:
app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-b
我刚接触到角,在进行开发时,下面的代码工作得很好(我使用Visual作为代码编辑器)
当我单击下面的菜单链接时,控制台窗口中会出现错误
ng-版本=“6.0.9”
npm list --depth=0
+-- rxjs@6.2.2
+-- rxjs-compat@6.2.2
ERROR Error: Uncaught (in promise): TypeError: this.auth.user$.map is not a function
TypeError: this.auth.user$.map is not a function
at AuthGuard.push../sr
我试图使用Webview在VS代码中集成一个web应用程序。我有这样的错误,提到不能读取cookie:
error: any
:
DOMException: Failed to read the 'cookie' property from 'Document': Cookies are disabled inside 'data:' URLs. at HttpXsrfCookieExtractor.push../node_modules/@angular/common/fesm5/http.js.HttpXsrfCookieExtractor.
通过在反应形式中使用此方法
<form #branchForm [formGroup]='branchForm'>
我犯了一些错误
Error: Uncaught (in promise): Error: Template parse errors:
Can't bind to 'formGroup' since it isn't a known property of 'form'. ("
<div class="box">
<div cla
我正在使用最新版本的jsPDF在角6
包装:-
源代码
import * as jsPDF from 'jspdf'
public captureScreen()
{
var data = document.getElementById('print');
html2canvas(data).then(canvas =>
{
// Few necessary setting options
var imgWidth = 208;
在将rxjs从v5迁移到v6之后,在使用mergeMap时遇到了一个错误:
of('foobar').pipe(
mergeMap(() => of('baz'))
).subscribe(console.log);
错误:
core.js:1598 ERROR TypeError: You provided an invalid object where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.
at Object.