在.NET核心项目中,我更改了所有项目的名称,而不是重新加载所有项目后,当时许多错误显示大约3225。而且主要所有错误都与系统名称空间有关,例如
System.Object 未定义或导入 System.Boolean 未定义或导入 Task 不存在ArgumentNullException找不到名称空间我该如何解决所有这些错误?
我尝试使用Node或NPM 自动重新加载与Angular相同的ASP.NET Core Project。
这意味着,我更改.NET Core Project的代码并保存。这段时间会自动在浏览器中直接生效,并在浏览器中自动重新加载网页。
我将第 3 方 API 集成到我的 API 中。那次就出错了。也许这是 SSL 连接问题。
"data": {
"message": "The SSL connection could not be established, see inner exception.",
"data": {},
"innerException": {
"ClassName": "System.Security.Authentication.AuthenticationException",
"Message": "Authentication failed, see inner exception.",
"Data": null,
"InnerException": {
"ClassName": "System.ComponentModel.Win32Exception",
"Message": "The message received was unexpected or badly formatted",
"Data": null,
"InnerException": null,
"HelpURL": null,
"StackTraceString": null,
"RemoteStackTraceString": null,
"RemoteStackIndex": 0,
"ExceptionMethod": null,
"HResult": -2147467259,
"Source": null,
"WatsonBuckets": null,
"NativeErrorCode": -2146893018
},
"HelpURL": null,
"StackTraceString": " at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest …Run Code Online (Sandbox Code Playgroud) 我的问题与DNS(Domain Name System) 有关。
我用DNS传播了一个我的域。这不会在 48 小时后传播。在世界范围内,有些地区传播DNS,有些地区不传播DNS(请参阅下图。)。
我们所做的DNS传播非常快速和轻松。
谢谢
我正在尝试制作一个简单的编辑组件。从 Javascript 的角度来看,我看不出有什么问题,但我认为我没有按照 Angular 想要的方式使用范围,所以我正在寻找一些指导。ERROR in src\app\admin\customers\customer-edit\customer-edit.component.html(10,97): : Property 'username' does not exist on type 'string[]'.
客户编辑.component.ts
import { Component, OnInit } from '@angular/core';
import { FormGroup} from '@angular/forms';
import { Router } from '@angular/router';
import { ToasterService, ToasterConfig } from 'angular2-toaster';
import { AdminService } from '../../admin.service';
import { customer } from '../../../../environments/environment';
@Component({
selector: 'app-admin/customer/edit-list',
templateUrl: './customer-edit.component.html',
styleUrls: ['./customer-edit.component.scss']
})
export class CustomerEditComponent implements OnInit {
editCustomerForm: FormGroup;
toaster: any;
data: string[];
toasterConfig: any;
toasterconfig: ToasterConfig = …Run Code Online (Sandbox Code Playgroud)