为了基于 @Input() 参数动态提供值,我们可以使用 @Injectable() 装饰器来创建一个服务。在服务中,我们可以使用 BehaviorSubject 类来创建一个可观察对象,并在组件中订阅该对象。当 @Input() 参数值更改时,我们可以在服务中更新可观察对象,以提供新的值。
以下是示例代码:
生成服务:
import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs';
@Injectable() export class DataService { private messageSource = new BehaviorSubject('default message'); currentMessage = this.messageSource.asObservable();
constructor() { }
changeMessage(message: string) { this.messageSource.next(message) } }
在组件中订阅服务:
import { Component, OnInit, Input } from '@angular/core'; import { DataService } from '../data.service';
@Component({
selector: 'app-home',
template: {{message}}
,
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
@Input() name: string;
message:string;
constructor(private data: DataService) { }
ngOnInit() { this.data.currentMessage.subscribe(message => this.message = message) }
newMessage() { this.data.changeMessage("Hello from home component") } }
在组件的 HTML 模板中使用 @Input():
当组件的 @Input() 值更改时,我们可以在组件中使用 changeMessage() 方法来更新服务中的数据。
以上就是基于 @Input() 参数动态提供值的Angular解决方法。