Angular: 如何从一个组件的前端 (app.compont.html) 获取值到另一个组件的后端 (other.component.ts)
Angular: How to get value from one component's frontend (app.compont.html) to another component's backend (other.component.ts)
考虑一个简单的 crud 场景。我在 app.component.html
中有很多输入字段和按钮。当我从 app.component.html
按下按钮时,它会将 html 字段值发送到 'other.component.ts' 组件,并在处理后(如加、减或其他)将结果显示回 app.component.html
).
这里是app.component.html
<a routerLink="posts/">Show Posts</a>
<input type="number" [(ngModel)]="get-one-post-id">
<a routerLink="/post-by-id">Show One Posts</a>
<router-outlet>
</router-outlet>
post-by-id-component.ts
import { Component, OnInit } from '@angular/core';
import { DataService } from '../data.service';
import { Observable } from 'rxjs';
@Component({
selector: 'app-post-by-id',
templateUrl: './post-by-id.component.html',
styleUrls: ['./post-by-id.component.css']
})
export class PostByIdComponent implements OnInit {
posts: object;
constructor(private dataService: DataService) { }
ngOnInit(): void {
// const id = ??
this.GetPost(1);
}
async GetPost(id: number)
{
const response = await this.dataService.Get_A_Post(id);
const dataService = await response.json();
this.posts = dataService;
}
}
post-by-id-component.html
<div *ngFor="let post of posts">
<h3>{{post.title}}</h3>
<p>{{post.body}}</p>
</div>
我只想从 get-one-post-id 字段中获取值 app.component.html 到 post-by-id-component.ts [我评论的地方 // const id = ??]。但是我找不到导入它的方法。
在 Angular 组件之间共享数据有 4 种不同的方式:
Parent 到 Child:通过输入共享数据
Child 到 Parent:通过视图共享数据Child
- Child 到 Parent:通过 Output() 和 EventEmitter 共享数据
- 不相关的组件:与服务共享数据
您可以阅读 this 篇有用的文章,了解其工作原理。
考虑一个简单的 crud 场景。我在 app.component.html
中有很多输入字段和按钮。当我从 app.component.html
按下按钮时,它会将 html 字段值发送到 'other.component.ts' 组件,并在处理后(如加、减或其他)将结果显示回 app.component.html
).
这里是app.component.html
<a routerLink="posts/">Show Posts</a>
<input type="number" [(ngModel)]="get-one-post-id">
<a routerLink="/post-by-id">Show One Posts</a>
<router-outlet>
</router-outlet>
post-by-id-component.ts
import { Component, OnInit } from '@angular/core';
import { DataService } from '../data.service';
import { Observable } from 'rxjs';
@Component({
selector: 'app-post-by-id',
templateUrl: './post-by-id.component.html',
styleUrls: ['./post-by-id.component.css']
})
export class PostByIdComponent implements OnInit {
posts: object;
constructor(private dataService: DataService) { }
ngOnInit(): void {
// const id = ??
this.GetPost(1);
}
async GetPost(id: number)
{
const response = await this.dataService.Get_A_Post(id);
const dataService = await response.json();
this.posts = dataService;
}
}
post-by-id-component.html
<div *ngFor="let post of posts">
<h3>{{post.title}}</h3>
<p>{{post.body}}</p>
</div>
我只想从 get-one-post-id 字段中获取值 app.component.html 到 post-by-id-component.ts [我评论的地方 // const id = ??]。但是我找不到导入它的方法。
在 Angular 组件之间共享数据有 4 种不同的方式:
Parent 到 Child:通过输入共享数据
Child 到 Parent:通过视图共享数据Child
- Child 到 Parent:通过 Output() 和 EventEmitter 共享数据
- 不相关的组件:与服务共享数据
您可以阅读 this 篇有用的文章,了解其工作原理。