文章目录

    • 1 基础语法
      • 1.0
      • 1.1 ngFor 和 事件
      • 1.1 事件传参
      • 1.1 获取dom元素
      • 1.2 ngIf
      • 1.3 父组件往子组件传值Input
      • 1.4 行内样式ngStyle
      • 1.5 双向数据绑定ngModel
      • 1.6 类
      • 1.7 ViewChild实现调用子组件方法
      • 1.8 组件内容嵌入
      • 1.9 事件参数
      • 1.10 使用表单指令
      • 1.11 内置管道(过滤器)
      • 1.12 自定义管道
      • 1.13 父子组件公用一个服务实例
      • 1.14 服务器通信get
      • 1.15 服务器通信post
      • 1.16 使用socket.io
      • 1.7 访问暂时不存在的对象
    • 2 生命周期
      • 2.1 ngOnChanges
      • 2.2 ngOnInit
      • 2.3 ngDoCheck
    • 3 路由
      • 3.1 初始
      • 3.2 路由策略
      • 3.3 激活路由样式
      • 3.4 默认跳转路由
      • 3.4 js跳转路由
      • 3.5 路由传参
      • 3.6 获取路由的参数
      • 3.7 子路由
      • 3.8 附属路由
    • 4 ng2的特点
      • 支持pwa
      • 依赖注入
      • rxjs
    • 5 注意点
      • 5.1 正则compile报错
      • 5.1 angular.json
    • 6 使用material
      • 6.1 配置
      • 6.2 table

1 基础语法

1.0

ng new my-app
ng serve --open
// 创建一个main组件, 系统为该组件命名为app-main供使用, <app-main></app-main>
ng generate component main  (简写 ng g c main)
ng g s 
ng g c session/info/msg (在session文件下的info文件夹创建msg组件)

1.1 ngFor 和 事件

  • 便利元素
<ul><li class="her" *ngFor="let hero of hero" (click)="onSelect(hero)"><span>{{hero.id}}</span><span>{{hero.name}}</span></li>
</ul>
export class HerosComponent implements OnInit {constructor() { }hero = HEROESselectedHero: Hero;onSelect(hero: Hero): void {this.selectedHero = hero;console.log('hero', hero)}ngOnInit() {console.log('生命钩子函数-ngOnInit')}}
  • 遍历块
<ng-template ngFor let-item [ngForOf]="userAllMsgArr" let-i="index" [ngForTrackBy]="trackByAllMsg" ><div *ngIf="item.isTrue"><li>{{i}}---{{item.name}}</li></div>
</ng-template>

1.1 事件传参

  • # list表示dom,
<div class="user" *ngFor="let item of userList" #list (click)="clickUser(item, list)"></div>
  • $event
<div class="user" *ngFor="let item of userList" #list (click)="clickUser(item, $event)"></div>

1.1 获取dom元素

<div class="msg-box" #msgBox></div>
import { Component, ElementRef, ViewChild } from '@angular/core';@Component({selector: 'app-chat',templateUrl: './chat.component.html',styleUrls: ['./chat.component.css']
})
export class ChatComponent implements OnInit {@ViewChild('msgBox') msgBox: ElementRefconstructor() { }testFn(dm): void {this.msgBox.nativeElement}}

1.2 ngIf

<div class="hero" *ngIf="selectedHero"></div>

1.3 父组件往子组件传值Input

  • 父组件box
// box.component.html
<div class="box"><h3>box component</h3><app-box-top [num]=100></app-box-top>
</div>
  • 子组件box-top
// box-top.component.html
<div class="box-top"><h4>box-top component</h4><h4>{{num}}</h4>
</div>
import { Component, OnInit, Input, Output } from '@angular/core';@Component({selector: 'app-box-top',templateUrl: './box-top.component.html',styleUrls: ['./box-top.component.css']
})
export class BoxTopComponent implements OnInit {// 声明对外暴露的接口, 用于接受父组件的数据源输入, 必须是Number类型@Input() num: Number;constructor() { }ngOnInit() {}}

1.4 行内样式ngStyle

<div class="box-top"><div [ngStyle]="setStyle()">ngStyle</div>
</div>
export class BoxTopComponent implements OnInit {constructor() { }setStyle() {return {'font-size': '22px','color': 'blue'}}ngOnInit() {}}

1.5 双向数据绑定ngModel

必须先在根模块中引入FormsModule

import { FormsModule } from '@angular/forms';@NgModule({// ...imports: [FormsModule],
})
export class AppModule { }
<div class="box-top"><h4>{{person}}</h4><input type="text" value="person" [(ngModel)]="person">
</div>
export class BoxTopComponent implements OnInit {constructor() { }person: string = 'tom'ngOnInit() {}}

1.6 类

<div class="box-top"><h4 [ngClass]="{box-title: sty.hasTitle}">设置类</h4>
</div>

1.7 ViewChild实现调用子组件方法

  • 父组件box
<div class="box"><div (click)="runBoxTopClick()">调用子组件box-top的testClick方法</div>
</div>
import { Component, OnInit, ViewChild } from '@angular/core';
import { BoxTopComponent } from '../box-top/box-top.component'@Component({selector: 'app-box',templateUrl: './box.component.html',styleUrls: ['./box.component.css']
})
export class BoxComponent implements OnInit {@ViewChild(BoxTopComponent) boxTopFn: BoxTopComponent;constructor() { }runBoxTopClick() {console.log('box调用子组件box-top里的testClick方法')this.boxTopFn.testClick()}ngOnInit() {}}
  • 子组件box-top
import { Component, OnInit, Input, Output } from '@angular/core';@Component({selector: 'app-box-top',templateUrl: './box-top.component.html',styleUrls: ['./box-top.component.css']
})
export class BoxTopComponent implements OnInit {constructor() { }testClick() {console.log('box-top')}ngOnInit() {}}

1.8 组件内容嵌入

  • 父组件box
<div class="box"><h3>box</h3><app-box-child select="[name=middle]"><div class="middle"><h4>嵌入内容到子组件, 此h4会嵌入到子组件中</h4></div><div class="bottom"><h4>嵌入内容到子组件, 此内容不会到子组件中, 不会显示在页面中</h4></div><div name="top"><h5>嵌入内容到子组件, 此h5会嵌入到子组件中</h5></div></app-box-child>
</div>
  • 子组件box-child
<div class="box-child"><ng-content select="[name=top]"></ng-content><ng-content select=".middle"></ng-content>
</div>

1.9 事件参数

// [value] input值的绑定
<input type="number" name="num" [value]="person.num"  (input)="inputChange($event)" />
person: Object = {num: 0
}
inputChange(e) :void {this.person.num = e.target.value
}

1.10 使用表单指令

  • 在根模块中导入FormsModule
import { FormsModule } from @angular/forms;
// 在所有模块中都能使用
@NgModule({FormsModule
})

1.11 内置管道(过滤器)

<div class="pip"><span>{{this.mydate | date: "yyyy-mm-dd hh:mm:ss"}}</span><button (click)="getNowTime()">获取当前时间</button>
</div>
export class MainComponent implements OnInit {constructor() { }mydate: ObjectgetNowTime(): void {this.mydate= new Date()}
}

1.12 自定义管道

  • 使用指令创建一个成绩等级的管道
ng generate pipe scoresLevel
  • scores-level.pipe.ts
import { Pipe, PipeTransform } from '@angular/core';@Pipe({name: 'scoresLevel'
})
export class ScoresLevelPipe implements PipeTransform {transform(value: Number): String {console.log('scoresLevel-----', value)if (value >= 90 && value <= 100) {return 'A';} else if (value >= 80 && value < 90) {return 'B';} else if (value >= 70 && value < 80) {return 'C';} else if (value < 70) {return 'D';}}
}
  • 使用管道
<div class="diy-pip"><div>{{myScores | scoresLevel}}</div><input type="number" [(ngModel)]="myScores" >
</div>
import { Component, OnInit, Input, EventEmitter } from '@angular/core';@Component({selector: 'app-main',templateUrl: './main.component.html',styleUrls: ['./main.component.css']
})
export class MainComponent implements OnInit {constructor() { }myScores: Number = 88}

1.13 父子组件公用一个服务实例

  • commonService.ts
import { Injectable } from '@angular/core';export class CommonService {products: object[] = []addProducts(info: Object): void {this.products.push(info)}clearProducts(): void {this.products = []}
}
  • app.component
<div class="add-product"><input type="text" [(ngModel)]="product.title" placeholder="名称"><input type="text" [(ngModel)]="product.des" placeholder="详情"><input type="text" [(ngModel)]="product.price" placeholder="价格"><input type="text" [(ngModel)]="product.addr" placeholder="产地"><button (click)="addProducts()">addProducts</button>
</div>
<app-main></app-main>
import { Component } from '@angular/core';
import { CommonService } from './commonService'@Component({selector: 'app-root',templateUrl: './app.component.html',styleUrls: ['./app.component.css'],providers: [CommonService]
})
export class AppComponent {product: Object = { title: '', des: '', price: '', addr: '' }constructor( private _CommonService: CommonService) {}addProducts(): void {this._CommonService.addProducts(this.product)console.log('-app-', this._CommonService.products)}
}
  • 子组件main.component
<div class="common-service"><button (click)="getProductList()">获取商品列表</button><li *ngFor="let item of productList"><span>{{item.title}}</span> -<span>{{item.des}}</span> -<span>{{item.price}}</span> -<span>{{item.addr}}</span></li>
</div>
import { Component, OnInit, Input, EventEmitter } from '@angular/core';
import { CommonService } from '../commonService'@Component({selector: 'app-main',templateUrl: './main.component.html',styleUrls: ['./main.component.css']
})
export class MainComponent implements OnInit {productList: Array<object>constructor( private _CommonService: CommonService) { }getProductList(): void {this.productList = this._CommonService.products}
}

1.14 服务器通信get

npm install --save rxjs  rxjs-compat
ng generate service ajax
  • 根路径引入HttpModule
import { HttpModule } from '@angular/http';@NgModule({imports: [HttpModule],
})
  • ajax.service.ts
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { Observable } from 'rxjs/Rx';
import 'rxjs/Rx';const url_getStudents: string = 'https://127.0.0.1:3000/studentsList'@Injectable({providedIn: 'root'
})
export class AjaxService {constructor( private _http: Http ) { }getPruductList(): Observable<any[]> {return this._http.get(url_getStudents).map(((res) => {console.log('res.json()', res.json())return res.json()}))}
}
  • main.component
<div class="http"><button (click)="getPruductList()">get</button>
</div>
import { Component, OnInit, Input, EventEmitter } from '@angular/core';
import { CommonService } from '../commonService'
import { AjaxService } from '../ajax.service'@Component({selector: 'app-main',templateUrl: './main.component.html',styleUrls: ['./main.component.css']
})
export class MainComponent implements OnInit {constructor( private _AjaxService: AjaxService) { }getPruductList(): void {this._AjaxService.getPruductList().subscribe(contacts => {console.log('contacts', contacts)}, err => {console.log('err', err)})}
}

1.15 服务器通信post

ng generate service ajax
  • 根路径引入HttpModule
import { HttpModule } from '@angular/http';@NgModule({imports: [HttpModule],
})
  • Ajax.service.ts
import { Injectable } from '@angular/core';
import { Http, Headers, RequestOptions } from '@angular/http';
import { Observable } from 'rxjs/Rx';
import 'rxjs/Rx';const url_addStudents: string = 'https://127.0.0.1:3000/add'@Injectable({providedIn: 'root'
})
export class AjaxService {constructor( private _http: Http ) { }addProductList(): Observable<any[]> {// let headers = new Headers({'Content-Type': 'application/x-www-form-urlencoded'}) let headers = new Headers({'Content-Type': 'application/json'}) let options = new RequestOptions({headers:headers})return this._http.post(url_addStudents, {name: 'tom'}, options).map(((res) => {console.log('res.json()----post', res.json())return res.json()}))}
}
  • Main.component
<div class="http"><button (click)="addProductList()">post</button>
</div>
import { Component, OnInit, Input, EventEmitter } from '@angular/core';
import { AjaxService } from '../ajax.service'@Component({selector: 'app-main',templateUrl: './main.component.html',styleUrls: ['./main.component.css']
})
export class MainComponent implements OnInit {constructor( private _AjaxService: AjaxService) { }addProductList(): void {this._AjaxService.addProductList().subscribe(contacts => {console.log('contacts', contacts)}, err => {console.log('err', err)})}
}

1.16 使用socket.io

  • polyfills.ts
(window as any).global = window;
  • app.component.ts
import * as socketIo from "socket.io-client";export class AppComponent {io = socketIongOnInit(): void {console.log('--socket--', this.io)}
}

1.7 访问暂时不存在的对象

export class ChatComponent implements OnInit {@Input() userAllMsg: objectconstructor() { }ngOnInit() {}ngOnChanges(changes: object): void {if (this.userAllMsg) {// 访问暂时不存在的对象时需要用[] 不能用点语法this.userAllMsgArr = this.userAllMsg['userAllMsg']}}}

2 生命周期

2.1 ngOnChanges

ngOnChanges当前晋档@Input装饰器显示指定的变量变化时被调用

  • 父组件box
<div class="box"><h2>box</h2><button (click)="addBoxNum()">改变num</button><app-box-child [num]="boxNum"></app-box-child>
</div>
import { Component, OnInit, ViewChild } from '@angular/core';
import { BoxTopComponent } from '../box-top/box-top.component'@Component({selector: 'app-box',templateUrl: './box.component.html',styleUrls: ['./box.component.css']
})
export class BoxComponent implements OnInit {@ViewChild(BoxTopComponent) boxTopFn: BoxTopComponent;constructor() { }addBoxNum(): void {this.boxNum += 1}boxNum: Number = 12ngOnInit() {}}
  • 子组件box-child
<div class="box-child"><h4>父组件传过来的num: {{num}}</h4>
</div>
import { Component, OnInit, Input } from '@angular/core';@Component({selector: 'app-box-child',templateUrl: './box-child.component.html',styleUrls: ['./box-child.component.css']
})
export class BoxChildComponent implements OnInit {@Input() num: Number;ngOnChanges(data): void {console.log('父元素传过来的值改变了', data)}constructor() { }ngOnInit() {}}
  • 运行结果

[外链图片转存失败(img-2ZfkdrFe-1563117055663)(assets/ngOnChanges.gif)]

2.2 ngOnInit

该方法内可用于获取数据, 类似于vue的created

2.3 ngDoCheck

3 路由

3.1 初始

  • app.routes.ts
import { Routes } from '@angular/router'
import { ListComponent } from './list/list.component'export const rootRouterConfig: Routes = [{path: 'list', component: ListComponent}
]
  • app.module.ts
import { rootRouterConfig } from './app.routes'
import { NgModule, ModuleWithProviders } from '@angular/core';
import { RouterModule } from '@angular/router'let rootRouteModule:ModuleWithProviders = RouterModule.forRoot(rootRouterConfig)@NgModule({imports: [rootRouteModule],
})export class AppModule { }
  • App.component.html
<div class="route"><h3>route</h3><a [routerLink]="['/list']">goto-list</a><router-outlet></router-outlet>
</div>

3.2 路由策略

是否使用hash

let rootRouteModule:ModuleWithProviders = RouterModule.forRoot(rootRouterConfig, {useHash: false}
)
// HashLocationStrategy策略
// useHash: true => http://localhost:4200/#/list// PathLocationStrategy策略
// useHash: false => http://localhost:4200/list
  • 使用PathLocationStrategy策略时需在服务器将所有路由重定向到首页, 因为应用会将请求路径原封不动发往后台

3.3 激活路由样式

被激活的路由自动赋予atv类

<div routerLinkActive="atv"><a [routerLink]="['/list']">goto-list</a>
</div>
<div routerLinkActive="atv"><a [routerLink]="['/detail']">goto-detail</a>
</div>
.atv {background: red;
}

3.4 默认跳转路由

  • app.component.ts
import { Router } from '@angular/router'export class AppComponent {constructor( private _router: Router) {_router.navigateByUrl('/list')}}

3.4 js跳转路由

  • app.component.html
<div class="route-fn" (click)="jsGoToList()">js-route</div>
  • app.component.ts
import { Router } from '@angular/router'export class AppComponent {constructor( private _router: Router) {}jsGoToList(): void {this._router.navigateByUrl('/list?num=8')    // localhost:4200/#/list?num=8// 或者this._router.navigate(['/list'], {queryParams: {num: 8}})  localhost:4200/#/list?num=8}}

3.5 路由传参

// 实现路由带参数
localhost:4200/#/list?num=8// 按钮
<a [routerLink]="['/list']" [queryParams] = "{num: 10}">goto-list</a>// js
this._router.navigate(['/list'], {queryParams: {num: 8}})
this._router.navigateByUrl('/list?num=8')

3.6 获取路由的参数

  • app.component.ts
<div routerLinkActive="atv"><a [routerLink]="['/detail']" [queryParams] = "{num: 10, from: 'a', addr: 'usa'}">to-detail</a>
</div>
  • detail.component.ts
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router'@Component({selector: 'app-detail',templateUrl: './detail.component.html',styleUrls: ['./detail.component.css']
})
export class DetailComponent implements OnInit {constructor(private _activatedRoute: ActivatedRoute) { }ngOnInit() {this._activatedRoute.queryParams.subscribe(params => {console.log(params)  // {num: "10", from: "a", addr: "usa"}})}}

3.7 子路由

  • app.routes.ts
import { Routes } from '@angular/router'
import { DetailComponent } from './detail/detail.component'
import { InfoComponent } from './info/info.component'export const rootRouterConfig: Routes = [{path: 'detail', component: DetailComponent, children: [// path为空表示默认显示的路由// {path: '', component: Info2Component}{path: 'info', component: InfoComponent}]}
]
  • detail.component.html
<div class="detail"><h3>detail-component</h3><a [routerLink]="['/detail/info']" [queryParams] = "{name: 'tom'}">goto-detail-info</a><router-outlet></router-outlet>
</div>

3.8 附属路由

同一个页面只能有一个router-outlet , 可以有多个附属路由

  • app.routes.ts
import { Routes } from '@angular/router'
import { DetailComponent } from './detail/detail.component'
import { InfoComponent } from './info/info.component'export const rootRouterConfig: Routes = [{path: 'detail', component: DetailComponent, children: [{path: 'info', component: InfoComponent},{path: 'addr', component: AddrComponent, outlet='card'},{path: 'age', component: AgeComponent, outlet='card'}]}
]
  • detail.component.html
<div class="detail"><h3>detail-component</h3><a [routerLink]="['/detail/info']" [queryParams] = "{name: 'tom'}">goto-detail-info</a><router-outlet></router-outlet><router-outlet name="card"></router-outlet>
</div>

4 ng2的特点

  • 和ng1相比, 对手机端的支持更好, 体积更小;
  • ng和vue的dom渲染不同

支持pwa

新的 CLI 命令ng add 将使你的项目更容易添加新功能。ng add使用软件包管理器来下载新的依赖包并调用安装脚本,它可以通过更改配置和添加额外的依赖包(如 polyfills)来更新你的应用。

你可在新的ng new应用程序中尝试以下动作:

  • ng add @angular/pwa:添加一个 app manifest 和 service worker,将你的应用程序变成 PWA。
  • ng add @ng-bootstrap/schematics:将ng-bootstrap添加到你的应用程序中。
  • ng add @angular/material:安装并设置 Angular Material 和主题,注册新的初始组件 到ng generate中。
  • ng add @clr/angular@next:安装设置 VMWare Clarity。

依赖注入

我们在组件需要某个服务的实例时,不需要手动创建这个实例,只需要在构造函数的参数中指定这个实例的变量,以及这个实例的类,然后angular会根据这个类的名字找到providers属性中指定的同名的provide,再找到它对应的useclass,最终自动创建这个服务的实例。

使用面向对象的代码制造一辆车, 下面代码中的汽车一旦制造, 发动机, 门, 车身都不能更改

import Engine from './engine';
import Doors from './doors';
import Body from './body';export default class Car {engine: Engine;doors: Doors;body: Body;constructor() {this.engine = new Engine();this.body = new Body();this.doors = new Doors();}run() {this.engine.start();}
}

解决依赖问题, 下面代码再车被制造出来之后仍然可以更改汽车的发动机, 车身, 门

let engine = new NewEngine();
let body = new Body();
let doors = new Doors();
this.car = new Car(engine, body, doors);
this.car.run();

angular的依赖注入

@Injectable()
export default class Car {constructor(private engine: Engine, private body: Body, private doors: Doors) {}run() {this.engine.start();}
};

rxjs

Rxjs是一种针对异步数据流的编程。它将一切数据,包括HTTP请求,DOM事件或者普通数据等包装成流的形式,然后用强大丰富的操作符对流进行处理,能以同步编程的方式处理异步数据,并组合不同的操作符来所需要的功能。

  • 获取数据需要订阅
const ob = http$.getSomeList(); //getSomeList()返回某个由`Observable`包装后的http请求
ob.subscribe((data) => console.log(data));
ob.subscribe({next: d => console.log(d),error: err => console.error(err),complete: () => console.log('end of the stream')
})// 直接给subscribe传入一个函数会被当做是next函数。这个完整的包含3个函数的对象被称为observer(观察者),表示的是对序列结果的处理方式。next表示数据正常流动,没有出现异常;error表示流中出错,可能是运行出错,http报错等等;complete表示流结束,不再发射新的数据。在一个流的生命周期中,error和complete只会触发其中一个,可以有多个next(表示多次发射数据),直到complete或者error。

5 注意点

5.1 正则compile报错

let reg = new RegExp("/::\\)|/::~|/::B|/::\\||/:8-\\)|", 'g');
reg.compile(reg)
// error TS2554: Expected 0 arguments, but got 1.
有时候你会遇到这样的情况,你会比TypeScript更了解某个值的详细信息。 通常这会发生在你清楚地知道一个实体具有比它现有类型更确切的类型。通过类型断言这种方式可以告诉编译器,“相信我,我知道自己在干什么”。 类型断言好比其它语言里的类型转换,但是不进行特殊的数据检查和解构。 它没有运行时的影响,只是在编译阶段起作用。 TypeScript会假设你,程序员,已经进行了必须的检查。类型断言有两种形式:
let someValue: any = "this is a string";
let strLength: number = (<string>someValue).length;let someValue: any = "this is a string";
let strLength: number = (someValue as string).length;
  • 消除错误
let reg = new RegExp("/::\\)|/::~|/::B|/::\\||/:8-\\)|", 'g');
(<any>reg).compile(reg)

5.1 angular.json

里面内容是严格json格式, 不能出现注释不然会报错

Unexpected token / in JSON at position

6 使用material

6.1 配置

npm install --save @angular/material @angular/cdk
npm install --save @angular/animations
npm install --save hammerjs
// app.module
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MaterialModule } from './material.module';@NgModule({imports: [MaterialModule],
})
export class AppModule { }
// material.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MatButtonModule } from '@angular/material';
import {MatTableModule} from '@angular/material/table';@NgModule({imports: [MatButtonModule,MatTableModule// 要使用的组件],exports: [MatButtonModule,MatTableModule// 要使用的组件],
})
export class MaterialModule { }
// main.ts
import 'hammerjs';
// style.css
@import "~@angular/material/prebuilt-themes/indigo-pink.css";

6.2 table

<mat-table [dataSource]="orderList" class="mat-elevation-z8"><ng-container matColumnDef="name"><mat-header-cell *matHeaderCellDef class="print-order-num"> 姓名 </mat-header-cell><mat-cell *matCellDef="let element" class="print-order-num"> {{element.name}} </mat-cell></ng-container><ng-container matColumnDef="addr"><mat-header-cell *matHeaderCellDef> 地址 </mat-header-cell><mat-cell *matCellDef="let element"> {{element.addr}} </mat-cell></ng-container><mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row><mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row></mat-table>
// 用于显示列
displayedColumns: string[] = ['name', 'addr'];orderList: Array<object> = [{name: 'tom', addr: 'usa'},{name: 'jack', addr: 'uk'}
]
查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. Angular 双向绑定

    Angular10教程--2.3 双向绑定双向绑定大致可以分成两种类型&#xff1a;一、普通组件的双向绑定二、表单中的双向绑定[(ngModel)]单独使用表单元素在标签中使用总结&#xff1a;前面我们了解了属性绑定、事件绑定以及输入和输出的使用&#xff0c;是时候了解双向绑定了。本节&a…...

    2024/5/9 12:54:05
  2. Angular2入门教程(1)

    【如需转载,请注明出处:https://blog.csdn.net/xx920312/article/details/81781836】 安装软件 node-v8.11.1-x64.msi 链接: https://pan.baidu.com/s/1yL7WU2qUmcsrlOyVfLOSCA 密码: czdtVSCodeSetup-x64-1.21.1.exe 链接: https://pan.baidu.com/s/18Ujtem9B-DKC1CRmp6CQM…...

    2024/4/21 2:11:17
  3. angular Attribute - angular 指令教程

    转载自 http://www.ngui.cc/news/show-130.html 在 Angular 中&#xff0c;我们可以通过 Attribute 装饰器来获取指令宿主元素的属性值。 指令的作用 该指令用于演示如何利用 Attribute 装饰器&#xff0c;获取指令宿主元素上的自定义属性 author 的值。 指令的实现 import { …...

    2024/4/23 4:11:41
  4. 【Angular】-环境搭建

    环境搭建 1、安装node.js 打开nodejs官网&#xff0c;它会根据系统信息选择对应版本&#xff08;.msi文件&#xff09;&#xff0c;点击Download按钮。 node.js插件在windows系统下是个.msi工具&#xff0c;只要一直下一步即可&#xff0c;软件会自动在写入环境变量中&#…...

    2024/4/25 0:23:40
  5. 使用VScode开发Angular

    文章目录前言主题插件快捷键问题记录Vs Code打开新的文件会覆盖窗口中的,怎么改文件夹按照层级结构显示如何快速打开项目参考文献前言 Visual Studio Code&#xff08;简称VS Code&#xff09;是一个由微软开发&#xff0c;同时支持Windows、 Linux 和 macOS 等操作系统且开放…...

    2024/4/21 2:11:14
  6. Angular开发系列教程

    第一章:环境搭建 第二章:关于angular整体框架及普通介绍 第三章:关于属性绑定与事件绑定 第四章:Angular开发(四)-关于angular2的通用指令 第五章:Angular开发(五)-关于组件的基本认识 第六章:Angular开发(六)-关于组件之间的数据传递 第七章:Angular开发(七)-关于组件的…...

    2024/4/28 0:44:52
  7. 【Angular】Angular从入门到实战视频教程第七章

    ...

    2024/4/28 16:20:40
  8. Angular5.x入门教程1

    首先请自行安装好Node和npm cmd测试下图&#xff0c;则表示安装成功 1,安装 -angular5.x脚手架CLI&#xff08;一系列工具命令和库&#xff0c;方便我们创建angualr项目&#xff09; 在cmd在下全局安装 安装完毕 接再来&#xff0c;选择一个需要生成项目的目录&…...

    2024/4/28 22:59:01
  9. Angular——Angular 教程

    http://www.w3cschool.cc/angularjs/angularjs-tutorial.html AngularJS入门教程http://www.ituring.com.cn/minibook/303 AngularJS实战:http://www.imooc.com/learn/156 angularjs学习总结 详细教程 :http://blog.csdn.net/yy374864125/article/details/41349417 转载于:http…...

    2024/4/28 16:28:15
  10. Angular2 入门教程

    一、 入门 1、初识Angular2 硬知识&#xff1a;Angular2与Angular的区别 &#xff08;1&#xff09;依赖加载&#xff1a;Angular1是依赖前置&#xff0c;angular2是按需加载 &#xff08;2&#xff09;数据绑定&#xff1a; Angular1 在启动时会给所有的异步交互点打补丁&…...

    2024/4/28 7:13:07
  11. Angular实现数字向上滚动效果组件

    大屏中数据刷新要求像电表一样滚动更新效果。 由于大屏中使用较多&#xff0c;选择封装为一个可复用组件。主要思想&#xff1a; 将宿主组件传入的值&#xff0c;分解为独立的数字和小数点&#xff0c;每个数字Dom由宿主css样式决定宽度&#xff0c;并生成一个子级的滑块&#…...

    2024/4/28 8:17:43
  12. Angular4安装教程

    1. 首先安装Node.js 打开node.js官网&#xff0c;选择下载LTS版本。 具体安装过程很简单&#xff0c;这里不再详细说明。 node.js安装完毕之后&#xff0c;在cmd窗口输入命令查看是否安装成功&#xff0c;如下图&#xff1a; 2. 在cmd命令窗口中直接输入&#xff1a; npm i…...

    2024/4/28 3:19:06
  13. Angular 7和ASP.NET Core 2.1入门

    目录 介绍 背景 前提条件 使用代码 使用模板的Angular 7 Web应用程序&#xff08;.NET Core&#xff09; 步骤1——使用模板创建Angular 7 ASP.NET Core 第2步——构建并运行应用程序 使用Asp.NET Core Web应用程序 步骤1——创建ASP.NET Core Web应用程序 第2步——升…...

    2024/5/5 12:08:01
  14. Angular 从0到1 (一)史上最简单的Angular教程

    第一节&#xff1a;初识Angular-CLI第二节&#xff1a;登录组件的构建第三节&#xff1a;建立一个待办事项应用第四节&#xff1a;进化&#xff01;模块化你的应用第五节&#xff1a;多用户版本的待办事项应用第六节&#xff1a;使用第三方样式库及模块优化用第七节&#xff1a…...

    2024/4/28 18:54:57
  15. Angular笔记 ---大地老师

    Angular 1.入门 创建项目 ng new 项目名 进入项目目录&#xff0c;安装依赖 cnpm install 运行 ng serve --open cli 命令行界面 command-line interface 文件目录结构 创建组件到components下的news文件 ng g component components/news [innerHTML] 解析html标签 sc…...

    2024/4/28 1:48:15
  16. 最新最全的angular4.x、anuglar2、anuglar8入门实战视频教程

    angular4.x视频教程强势来袭!!忙碌的工作&#xff0c;不停的充电&#xff0c;好久没遇到这么实用的教程了&#xff0c;跟同行分享一下&#xff0c;写篇文章&#xff0c;放松放松。。有好的技术资源的也希望大家多分享&#xff0c;我会关注学习的。 angular4.x、angular5.x、ang…...

    2024/4/28 15:34:30
  17. angular学习005主从组件

    参考来源&#xff1a;https://www.angular.cn/tutorial/toh-pt3ng generate component hero-detail1、详情模板app\hero-detail\hero-detail.component.html <div *ngIf"hero"><h2>{{ hero.name | uppercase }} Detail </h2><div><span&g…...

    2024/4/28 16:08:07
  18. Spring Security和Angular教程(二)登录页面

    Spring Security和Angular教程&#xff08;二&#xff09; 登录页面 在本节中&#xff0c;我们将继续讨论如何在“单页面应用程序”中使用带有Angular的Spring Security。在这里&#xff0c;我们将展示如何使用Angular通过表单对用户进行身份验证&#xff0c;并获取要在UI中呈…...

    2024/5/8 20:50:26
  19. angular7教程(1)——初步了解angular7及项目构建

    1、安装cli npm install -g angular/cli 2、创建工作区和初始应用项目 ng new my-app npm ERR! path E:\aGit-project\myapp\node_modules\.staging\typescript-53141799\lib\tsserverlibrary.js npm ERR! code EPERM npm ERR! errno -4048 npm ERR! syscall unlink npm ER…...

    2024/4/28 19:42:44
  20. Angular 使用教程

    1、下载node.js&#xff0c;然后一直安装&#xff0c;可以修改一下node.js文件安装路径 查看是否node.js安装成功&#xff0c;在运行——cmd中输入以下代码。如果安装成功&#xff0c;则会显示出node.js的版本号node -v2、安装Angular CLI 在cmd中继续输入安装 angular命令行界…...

    2024/4/29 0:43:40

最新文章

  1. el-table-column表格匹配字典数据

    根据字典值匹配 列的值 优点就是可维护性强 改完字典就会生效 如果写死需求变更难以维护 <el-table v-loading"loading" :data"processList" selection-change"handleSelectionChange"><el-table-column type"selection" wid…...

    2024/5/9 14:58:20
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/5/7 10:36:02
  3. 整理的微信小程序日历(单选/多选/筛选)

    一、日历横向多选&#xff0c;支持单日、双日、三日、工作日等选择 效果图 wxml文件 <view class"calendar"><view class"section"><view class"title flex-box"><button bindtap"past">上一页</button&…...

    2024/5/9 11:27:28
  4. TCP网络协议栈和Posix网络部分API总结

    文章目录 Posix网络部分API综述TCP协议栈通信过程TCP三次握手和四次挥手&#xff08;看下图&#xff09;三次握手常见问题&#xff1f;为什么是三次握手而不是两次&#xff1f;三次握手和哪些函数有关&#xff1f;TCP的生命周期是从什么时候开始的&#xff1f; 四次挥手通信状态…...

    2024/5/8 14:58:44
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/5/8 6:01:22
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/5/7 9:45:25
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/5/4 23:54:56
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/5/9 4:20:59
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/5/4 23:54:56
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/5/4 23:55:05
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/5/4 23:54:56
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/5/7 11:36:39
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/5/4 23:54:56
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/5/6 1:40:42
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/5/4 23:54:56
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/5/8 20:48:49
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/5/7 9:26:26
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/5/4 23:54:56
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/5/8 19:33:07
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/5/5 8:13:33
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/5/8 20:38:49
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/5/4 23:54:58
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/5/9 7:32:17
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/5/4 23:54:56
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57