2

我有一个 Nativescript Vue 组件模板定义为:

<ScrollView>
    <StackLayout>
        <ContentView ref="mapContainer" height="500" width="100%">
            <Mapbox
            accessToken="my access key"
            mapStyle="outdoors-v9"
            hideCompass="true"
            zoomLevel="10.2" , 
            latitude="51.949266"
            longitude="-12.183571"
            showUserLocation="true"
            disableZoom="true"
            disableRotation="true"
            disableScroll="true"
            disableTilt="true"
            @mapReady="onMapReady($event)">
            </Mapbox>
        </ContentView>
        <Label text="A test label"/>
    </StackLayout>
</ScrollView>

安装组件后,我想将高度设置为mapContainer屏幕高度的大约 75%。为此,我有:

export default {
    name: "MyPage",

    mounted () {
        this.$refs.mapContainer.height = platform.screen.mainScreen.heightDIPs
    }

    ...

}

但这无济于事,ContentView仍然保持 500dp 高。

height本来是一个二传手,但我想我错过了重绘(?)以使此更改生效,但不确定如何?

4

1 回答 1

3

为了访问ContentViewvia refs,您必须使用.nativeView属性。

this.$refs.mapContainer.nativeView.height = platform.screen.mainScreen.heightDIPs

此外,您不必计算高度,只需以百分比 (70%) 而不是固定值 (500) 设置高度,或者使用具有 7 个分区 (7*) 的 GridLayout。

于 2018-11-26T15:43:42.387 回答