NativeScript Vue Frame导航不导航

时间:2018-11-15 20:57:50

标签: nativescript nativescript-vue

[编辑] -> Playground Link

我正在使用NativeScript和Vue创建一个应用程序。加载后,我想显示一个登录页面,或者如果用户以前已经登录过,请浏览其他地方。 我的页面已加载,但无法导航到登录页面。这是在IOS模拟器中运行的。

<template>
    <Page>
        <RadSideDrawer ref="drawer" showOverNavigation="true">
            <StackLayout ~drawerContent backgroundColor="#ffffff">
                <Label class="drawer-header" text="Drawer"/>

                <Label class="drawer-item" text="Static 1"/>
                <Label class="drawer-item" text="Static 2"/>
                <Label class="drawer-item" text="Static 3"/>
            </StackLayout>
            <Frame ~mainContent> 
                <Page> <!-- test to see if mainContent navigates -->
                    <TextField class="input" hint="Email" keyboardType="email" autocorrect="false" autocapitalizationType="none" v-model="user.email"
                     returnKeyType="next" fontSize="18" />
               </Page>
            </Frame>
        </RadSideDrawer>
    </Page>
</template>

<script>
import homePage from './HomePage'
import loginPage from './LoginPage'

export default {
    data() {
        return {
            isLoggingIn: true,
            user: {
                email: "foo@foo.com",
                password: "foo",
                confirmPassword: "foo"
            }
        };
    },
    mounted() {
        this.user.email = "test@example.com", <!-- Change email to check mounted is called.  It is! -->
        this.$navigateTo(loginPage, { frame: "mainContent" } )
    }
};
</script>

我无法弄清楚自己在做什么,也不能从源头解决。任何帮助/建议将不胜感激。

1 个答案:

答案 0 :(得分:1)

您尚未在Frame内为您的RadSideDrawer设置ID。

为了使您的this.$navigateTo代码正常工作,框架声明应该是

...
<Frame id="mainContent" ~mainContent> 
...

编辑:

我已经更新了您的Playground sample

  • Page只能是Frame的子级。因此,我不得不更新您的LoginPage.vueHomePage.vue来容纳Page
  • 如果我没看错,RadSideDrawer内部会覆盖mainContent的引用(虽然不确定),所以id在这里效果更好。
  • 安装组件时,并不意味着也安装了内部的所有组件。所以我不得不添加一个超时。我不确定为什么您真的想在页面加载后立即进行导航,而是可以将登录/主页组件嵌入到Frame中作为默认页面。