首页 > 解决方案 > Nativescript Angular BottomNavigation selectedIndex 绑定不起作用

问题描述

我的带有 selectedIndex 绑定的 BottomNavigation 在加载时不起作用,没有显示内容但导航栏在那里。如果我正常插入索引,那么它将起作用。有人可以给我建议吗?谢谢

HTML:

<BottomNavigation [selectedIndex]="tabIndex">  <-- Not Working this way
<BottomNavigation selectedIndex="1"> <-- Works fine

TS:

export class MainComponent implements OnInit {

tabIndex: number = 2;

这是游乐场示例

标签: androidiosangularnativescript

解决方案


推荐阅读