微信小程序-跳转-本地获取存储-手机号验证 发表于 2019-09-24 | 更新于 2020-03-02 | 分类于 技术获取本地存储12345//获取本地存储wx.getStorageSync("SysInfo").permission.title;//设置本地存储wx.setStorageSync("UserID", data.data.user_id);跳转12345//直接跳转并不删除当前页面wx.navigateTo({'url':'/pages/shop/c/register/register'});//删除当前页面并跳转wx.redirectTo({'url':'/pages/shop/c/register/register'});手机号验证1234const phoneVerification = function(phone) { let reg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+\d{8})$/; return reg.test(phone);}