export const common = { skip: function(url, type) { if (type == 'to') { uni.navigateTo({ url: url, complete: (res) => { console.log(res) } }) } else if (type == 'back') { uni.navigateBack({ delta: url }) } else if (type == 'ret') { uni.redirectTo({ url:url }) }else if (type == 'tabbar') { uni.switchTab({ url }) } } } 什么意思
时间: 2024-04-28 14:25:38 浏览: 156
const-version:一个微型命令行工具,用于提取 `package.json` 版本并以 ES6 语法生成 `export const VERSION='...'` 文件
这是一段 JavaScript 代码,定义了一个常量对象 `common`,其中包含了一个名为 `skip` 的函数。这个函数接受两个参数,一个是 `url`,表示要跳转的页面路径,另一个是 `type`,表示跳转的方式。如果 `type` 是 `'to'`,则使用 `uni.navigateTo` 方法进行页面跳转,并在跳转完成后打印日志;如果 `type` 是 `'back'`,则使用 `uni.navigateBack` 方法返回上一个页面;如果 `type` 是 `'ret'`,则使用 `uni.redirectTo` 方法进行页面重定向;如果 `type` 是 `'tabbar'`,则使用 `uni.switchTab` 方法跳转到底部选项卡页面。
阅读全文