作为初学者,我在使用 Angular 和 Observables 时遇到了一个问题。我有一个 API 可以获取数据库中某个特定餐厅的信息,但我必须通过 POST 请求来获取它。当餐厅登录时,我成功地从 auth.service 和另一个 API 获取了restaurantID,但是当我尝试在控制台中登录餐厅时,我得到了undefined。我一律没有权限在这里显示 API。代码:restaurant
2019-05-22
我试图获取 ngOnInit 中的第二个函数返回值,但它给出未定义。如果我打印 SvgImage,它就会打印。我不知道我在哪里犯了错误。ngOnInit() {this.userService.displayEvents(this.user_id).subscribe(data => {this.eventArray = [];if (data.status == 'success') {data
2020-02-13
我遇到一个问题,即某个函数返回了错误的返回值,而不是正确的返回值。模型:export module AbsModule {export class AbsModul{abs: string;state: boolean;}}import { Injectable } from '@angular/core';import { HttpClient, HttpHeaders } from '@an
2021-02-20
我为 forge viewer 编写了一个扩展(使用 angular),但它给出了一个运行时错误,指出 Autodesk 未定义export class MyExtension extends Autodesk.Viewing.Extension {public static extensionName: string = 'MyExtension';public load() {console.
我有 2 个数据结构,如下所示data1 :{purchaceOrder: [{name: "Purchase Order",version: 1,description: "purchase order process",saved: true,visibility: true},{name: "Purchase Order",version: 2,description: "purchase
2020-08-27
我正在尝试进行本机 Facebook 登录,但出现此错误Uncaught (in promise): TypeError: Cannot read property 'apply' of undefined我向您展示了我的所有项目代码。只是说它让我成功连接到 Facebook,但它显示了这些错误。import { Component, ViewChild } from '@angular/core
2017-01-13
我是 Ionic 的新手。这个 Lynda 课程是我对 Ionic 的入门介绍,我一直在顺利地跟随讲师的教程,直到他介绍了提供程序。我的提供程序文件如下:import { HttpClient } from '@angular/common/http';import { Injectable } from '@angular/core';/*Generated class for the Peop
我想使用 renderer2 的附加子函数,但在移动整个组件时遇到了一些困难。这是我的组件的缩短版本。ts:@ViewChild('test', { static: false }) test;@ViewChild('test2', { static: false }) test2;this.renderer.appendChild(this.test, this.test2);html:<div
2019-08-19
我有此代码, idTirada: string;tirada: Tirada;constructor(private tiradaService: TiradaService,private route: ActivatedRoute ) {this.idTirada = this.route.snapshot.paramMap.get('id');this.tiradaService.getTi
2020-06-23
我正在尝试创建一个基本上是 ebay 的克隆版并带有搜索栏的网站,但在尝试导入正确的文件时出现错误。以下是错误截图:在此处输入图片说明以下是 plunker(完整项目)的链接:plnkr.co/edit/1lcI4dURHwA8D9IQtqSf?p=info以下是完整项目的 dropbox 版本的链接(请注意,这不包括 nodes_modules 文件夹):https://www.dropbox.
2016-05-10
迁移到 NgModule 后出现此错误,此错误没有太大帮助,有什么建议吗?Error: Error: Unexpected value 'undefined' imported by the module 'AppModule'at new BaseException (http://localhost:5555/node_modules/@angular/compiler/bundles/com
2016-09-01
我以为我理解了ngModule的工作原理,但显然不是。我有 3 个模块:AppModule、AmpedFormsModule和AmpedCommonModule(如下所示)问题是,当我尝试将AmpedFormsModule导入AmpedCommonModule时,它给出了此错误,控制台日志给出了未定义:Unexpected value 'undefined' imported by the mod
2016-11-11
我有 angular2 应用程序,我想在其中使用来自外部 JS 文件的 hlghttamyJSfile.jsvar hlghtta = function (b, t, re, c) {"use strict";.......some functions here};module.exports = hlghtta;但是我无法将其导入到我的组件中import hlghtta from "hlghtt
2017-09-01
我卡在这里setTimeout(() => document.querySelector('true').scrollIntoView());我希望当 html 中的[style.border]="detailData.selected ? '2.5px solid #FD8023' : ''"为真时,滚动将滚动到这里。但它会出现错误ERROR TypeError: "document.query
2019-09-11
如何在 angular 中导入https://anseki.github.io/plain-draggable/?我已经npm i plain-draggable,然后在 angular.json 中导入 .min.js在 html 中<span id="draggable" style="background-color: lightskyblue;">adipiscing</span>elit
2020-08-20