debugger-tool-for-Apache-Weex
debugger-tool-for-Apache-Weex copied to clipboard
wxc-minibar安卓和iOS不能正确跳转到指定的页面
<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直接返回到上一次出现的页面。