Несовпадение функциональности пакета приложений Android - PullRequest
0 голосов
/ 12 февраля 2019

В моем приложении 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]

Кто-нибудь знает, как обращаться с этим деломи почему функциональность отличается от нормальной?

1 Ответ

0 голосов
/ 05 июля 2019

Это ошибка в nativescript.Я поднял вопрос https://github.com/NativeScript/NativeScript/issues/7449 для того же.

...