如果 NativeScript 页面完全呈现并且对用户可见,如何识别?最好是一种方法,我可以在其中调用 timestamp/console.log 。NativeScript 有两种风格,NS Core 和 NS Angular。我不太确定这是否满足这一点?
对于 NS/Cores:页面加载事件的事件处理程序。
function pageLoaded(){
console.log()
}
<Page loaded="pageLoaded">
https://docs.nativescript.org/cookbook/ui/page
对于 NS/Angular:ngOnInit
ngOnInit(){
console.log()
}