在我的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 应用程序包时,如 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]
有谁知道如何处理这种情况以及为什么功能与正常功能不同?
这是原生脚本中的一个错误。我为此提出了一个 https://github.com/NativeScript/NativeScript/issues/7449 问题。