В моем приложении Nativescript я отображаю что-то вроде следующего:
Item 1 of 10
Item 2 of 10
....
Item 10 of 10
Для этого у меня есть следующий код, который нормально работает
<ListView id="listView" items="{{ items }}" itemTemplateSelector="$index">
<ListView.itemTemplate>
<StackLayout>
<Label marginTop="20" textAlignment="center" fontWeight="Bold">
<Label.formattedText>
<FormattedString>
<FormattedString.spans>
<span text="Item " />
<span text="{{ $index + 1 }}"/>
<span text=" Of "/>
<span text="{{$parents['ListView'].items, $parents['ListView'].items.length }}" />
</FormattedString.spans>
</FormattedString>
</Label.formattedText>
</Label>
</StackLayout>
</ListView.itemTemplate>
</ListView>
, но когда я выпускаю Android App Bundle, как упомянуто в https://docs.nativescript.org/angular/tooling/publishing/android-app-bundle, это выдает что-то вроде следующего:
Item 1 of [Object, Object]
Item 2 of [Object, Object]
....
Item 10 of [Object, Object]
Кто-нибудь знает, как обращаться с этим деломи почему функциональность отличается от нормальной?