Android App Bundle功能不匹配

时间:2019-02-12 10:25:55

标签: android nativescript android-bundle

在我的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>

但是当我按https://docs.nativescript.org/angular/tooling/publishing/android-app-bundle所述发布Android App Bundle时,会产生类似以下内容:

Item 1 of [Object, Object]

Item 2 of [Object, Object]

....

Item 10 of [Object, Object]

有人知道如何处理这种情况,为什么功能与正常情况有所不同?

1 个答案:

答案 0 :(得分:0)

这是nativescript中的错误。我同样提出了一个问题https://github.com/NativeScript/NativeScript/issues/7449