- 发布:2021-10-18 13:50
- 更新:2022-08-03 23:59
- 阅读:1746
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 10
HBuilderX类型: Alpha
HBuilderX版本号: 3.2.10
手机系统: 全部
手机厂商: 华为
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
测试过的手机:
操作步骤:
这是utils.ts中的代码
/**
*
* 获取路由参数
*
*/
export function getRouteParams<T> () : T {
const page = getCurrentPages()
const current = page[page.length - 1].$page
return current.options
}
/**
*
* 隐藏手机号码
* 显示前3位与后4位, 其它的用 * 代替
*
*/
export function hidePhone (phone: string) : string {
const reg = /^(\d{3})\d{4}(\d{4})$/
return phone.replace(reg, "$1****$2")
}
// 设置密码
export function setPassword (password: string) : void {
uni.setStorageSync('password', password);
}
这是utils.ts中的代码
/**
*
* 获取路由参数
*
*/
export function getRouteParams<T> () : T {
const page = getCurrentPages()
const current = page[page.length - 1].$page
return current.options
}
/**
*
* 隐藏手机号码
* 显示前3位与后4位, 其它的用 * 代替
*
*/
export function hidePhone (phone: string) : string {
const reg = /^(\d{3})\d{4}(\d{4})$/
return phone.replace(reg, "$1****$2")
}
// 设置密码
export function setPassword (password: string) : void {
uni.setStorageSync('password', password);
}
预期结果:
引入时不用 .ts 后缀
引入时不用 .ts 后缀
实际结果:
引入时需要 .ts 后缀
引入时需要 .ts 后缀
museachou (作者) - mmx
这么大的公司, 搞这个产品, 提个问题都不敢回复? 看了就是不说, 不管是不是问题, 至少也都回复一声, 不回复只会让人感觉这不是你们能解决的问题, 害 失望了
浅木曦
老哥解决了吗!!我也遇到了
2022-02-19 19:26