|
这样写到,能跳转到这个页面,但是页面拿不到参数,这个真的是惆怅死了!- appRouter('com.yokong.kyy',
- '/pages/book-detail/',
- { bid:"96329"},'Quick App Demo'
- )
复制代码 接受参数也是用public定义的
- public: {
- bid: '',
- channel_id: 1,
- },
复制代码 本地测试的写法,页面参数是可以获得到的,但是到线上就是没用!很惆怅,测试的是vivo线上!
- router.push({
- // 快应用内只能使用hap链接
- uri: 'hap://app/com.yokong.kyy/pages/book-detail?bid=96329'
- })
复制代码
|
|