debugger-tool-for-Apache-Weex icon indicating copy to clipboard operation
debugger-tool-for-Apache-Weex copied to clipboard

wxc-minibar安卓和iOS不能正确跳转到指定的页面

Open cykl4451 opened this issue 7 years ago • 0 comments

<wxc-minibar title="退款" text-color="#333333" background-color="#FFFFFF" @wxcMinibarLeftButtonClicked="minibarLeftButtonClick">

minibarLeftButtonClick(){ let bundleUrl = weex.config.bundleUrl; let base = apis.getBaseUrl(bundleUrl, false, true); let cartUrl = base + 'native/roles/boss/reportform/returnMoney/refundsList.js'; let pathParams = {'url': cartUrl, 'animated': 'true'}; navigator.push(pathParams, function (e) {

            });

        },

预期:安卓和iOS都能跳转到我指定的页面; 结果:安卓可以跳转到指定页面,但是iOS直接返回到上一次出现的页面。

cykl4451 avatar May 10 '18 07:05 cykl4451