答案 0 :(得分:1)
您可以将 for iOS
Use timer in Swift
var timer = Timer()
self.timer = Timer.scheduledTimer(
timeInterval: 1.0,
target: self,
selector: #selector(self.callFunction),
userInfo: nil,
repeats: true)
//time interval is in seconds
func callFunction(){
//this method will be called repeatedly after every 1 sec
}
timer.invalidate() //to stop timer
对象作为user
传递给子组件。
班级:
@Input
模板:
export class ChildComponent implements OnInit{
@Input() user: SocialUser;
}
答案 1 :(得分:1)
您可以使用3种方式将值从父级转移到子级
使用输入 在父.html文件中
<app-child [user]="user"></app-child>
和child.ts文件
export class ChildComponent implements OnInit{
@Input() user: SocialUser;
}
使用简单存储 storage.service.ts
public user: String = '';
现在将此项服务导入module.ts文件,并在parent.ts中导入存储服务
constructor(public storageService: StorageService){}
ngOnInit(){this.storageService.user = 'user_value';}
在child.ts文件中
constructor(public storageService: StorageService){}
ngOnInit(){console.log(this.storageService.user);}
使用可观察的 在storage.service.ts
public user: Subject<any> = new BehaviorSubject<any>(null);
现在将此项服务导入module.ts文件,并在parent.ts中导入存储服务
constructor(public storageService: StorageService){}
ngOnInit(){this.storageService.user.next('user_value')}
在child.ts文件中
constructor(public storageService: StorageService){}
ngOnInit(){
this.storageService.user.subscribe(user=> {if(user) console.log(user)});
}
答案 2 :(得分:0)
答案 3 :(得分:0)
在Angular中,您可以使用以下方法将数据从父级传递给子级: @Input装饰器。
第1步:父组件
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
user:string;
ngOnInit(): void {
this.user='sanjay'
}
}
第二步:子组件
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-test',
template:'<h1>{{user}}</h1>',
styleUrls: ['./test.component.scss']
})
export class TestComponent {
@Input() user:string;
}
答案 4 :(得分:0)
如果您的父母与孩子之间没有直接关系,则可以向您的孩子注入相同的服务,并像在父母那里一样获得users
数据
如果他们有关系-您可以使用component
属性
@Input()
选择器
loginHandler.component.html
<app-profile-handler [childUser]="user"></app-profile-handler>
profileHandler.component.ts
export class ProfileHandlerComponent {
@Input() childUser: SocialUser;
}
希望这对您有所帮助-编码愉快:)