💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
* 只在H5中使用 ~~~ <script> .... const navigator = weex.requireModule("navigator"); </script> ~~~ ~~~ navigator.push({ url: "./detail.html", animated: "true" }); ~~~ 这样就可以在H5中进行跳转 * 兼容三端 1、在src根目录下创建utils ~~~ export function getEntryUrl(name) { // 判断当前的环境,适配web端 if (weex.config.env.platform === "Web") { return './' + name + '.html' } else { let arr = weex.config.bundleUrl.split('/'); arr.pop(); arr.push(name + '.js'); return arr.join('/'); } } ~~~ 2、引入utils ~~~ <script> .... const navigator = weex.requireModule("navigator"); import { getEntryUrl } from "./utils"; </script> ~~~ 3、实现跳转 ~~~ navigator.push({ // url: "./detail.html", url: getEntryUrl("detail"), animated: "true" }); ~~~ * 返回页面 ~~~ navigator.pop({ animated: "true" }); ~~~