ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
-
- Posts: 29
Re: ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
deviceId试一下传个空的,bizClientId传RN面板id
Code: Select all
import { openPanel } from '@ray-js/ray';
openPanel({
deviceId: groupId ? `${groupDevId}` : devId,
extraInfo: {
productId,
productVersion: groupId ? '1.0.0' : `${productVersion || '1.0.0'}`,
i18nTime,
bizClientId: '000001saet',
uiType: 'RN',
uiPhase: 'release',
},
initialProps: groupId ? {
isGroup: true,
groupId: groupId,
showCountDown: false,
} : {
isGroup: false,
showCountDown: false,
},
});
Last edited by muhai on 2024年 Dec 18日 12:06, edited 2 times in total.
-
- Posts: 29
Re: ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
不行,提示{
"errorCode": 9,
"errorMsg": "Method UnKnown error"
}这个
Re: ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
BizKit版本要大于>=4.12.0,看下基础库版本是否符合要求
-
- Posts: 121
Re: ray有没有类似RN jumpSubPage方法,通过传uiId参数来跳转页面的
如何修改ide中基础库版本?是直接在ide,设置=>环境配置中进行选择吗?但我实测发现,ide中修改了版本,但在app
中查看实际参数,并没有得到修改