我正在开发一个表单,我将从 webapi 获取值并显示给用户。好的。所有部分操作系统从 webapi 获取数据都是可以的。订阅返回正确的 Json,没有问题这是 angular 程序:import { Component, Input, ViewChild, OnInit } from '@angular/core';import { ErrorMsgComponent } from '../..
我编写了一个 http 服务。它包含一个函数请求调用:import { Injectable } from '@angular/core';import { HttpClient, HttpErrorResponse } from '@angular/common/http';import { ApiMethod, AuthEndPoints } from '../conts';import {
2021-05-24
我正在学习 Ionic 3,在尝试制作检查唯一用户名的自定义验证器时出现此错误。我已尽最大努力,但无法解决这个问题。CustomValidators.tsimport { Directive, Input } from '@angular/core';import { FormControl, Validator, AbstractControl } from '@angular/forms';i
2017-06-16
我只是不明白这个错误,为什么它无法读取属性“nav”。我很困惑。希望有人能帮助我并向我解释这个错误,这里是错误:import { Component, ViewChild } from '@angular/core';import { Platform, Nav } from 'ionic-angular';import { StatusBar } from '@ionic-native/stat
2017-08-31
请查看下面的代码。import { Component,ViewChild,QueryList,ViewChildren } from '@angular/core'@Component ({selector : 'other-component',template : `<h2>OtherComponent<h2><table #tab id="tab"><tr *ngFor="let val
2016-09-12
Note: since the problem is a little complex, the code is abstracted for readability我们有一个这样的<parent-component>:<child-component></child-component><button (click)="doSomeClick()"> Do Some Click </button
2017-06-01
我需要将 elmarquez/threejs-viewcube 中的“CubeView”添加到我的项目中。我创建了组件。上面的组件代码:import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';import { DOCUMENT } from '@angular/common';declare l
2019-06-19
我是 Angular4 的新手我想在 Angular4 中集成 CKeditor我按照这个网址操作,但它适用于 Angular 2,在 Angular 4 中不起作用。我已经在那里检查过了System.config({"map": {"ng2-ckeditor": "npm:ng2-ckeditor",},"packages": {"ng2-ckeditor": {"main": "lib/ind
2017-09-01
我正在尝试存根 imgur 请求和响应。根据API 文档,我可以发出如下匿名请求:curl --location --request POST 'https://api.imgur.com/3/image' \--header 'Authorization: Client-ID {{clientId}}' \--form 'image=R0lGODlhAQABAIAAAAAAAP///yH5BAE
2020-04-27
我有一个 angular 7 应用程序,我正在尝试按照此示例加载 mobilenet 模型。我通过运行npm install @tensorflow/tfjs安装了 tensorflowjs(按照此说明进行操作),并通过运行@tensorflow-models/mobilenet安装了 mobilenet 模型。之后,我通过执行以下操作导入了移动网络:import * as mobilenet f
2019-05-08
我有一个创建对象的方法函数。这是我的函数packetdata:any[];ngOnInit() {this.service.getonepacket(this.nopacket).subscribe(data => {return this.packetdata = data;},error => console.log(this.errorMessage = <any>error))}如果我使用
2017-06-14
构建angularlibrary 项目时出现以下错误。Building Angular PackageBuilding entry point '@abc/lib'Compiling TypeScript sources through ngcBundling to FESM2015BUILD ERRORCould not resolve entry (C:\Dev\abc\build\dist-
2019-02-27
我有一个.html文件,我在其中使用{{candidate.phone}>,我可以在页面上看到结果,但在控制台中出现错误ERROR TypeError:无法读取未定义的属性“phone”。如果我理解正确的话,这是因为ngOnInit不会等待getCandidate()的响应,所以问题是我如何在它完全完成后调用此函数?这是我的代码:candidate: ICandidatesInfo;ngOnIni
我尝试从服务器获取数据(JSON)并仅在单击按钮后显示在网络上。第一次单击后,我收到错误:core.js:4352 ERROR TypeError: Cannot read property 'imie' of undefinedat HttpTestComponent.get (http-test.component.ts:28)at HttpTestComponent_Template_but
2020-10-20
我有一个包含多个项目(库)的 angular 11 工作区。最近我向库中添加了一个新组件,编译一切正常。在我的 public-api.ts 文件中公开新组件后,我在编译库时(使用 ng build my-lib 命令)收到此一行无意义的错误:ERROR: Cannot read property 'then' of undefined有人遇到过这个问题吗?请帮忙!public-api.ts 最新更
2021-06-11