// 登录函数
function login(username, password) {// 假设这是你的登录接口const loginUrl = 'https://your-api-domain.com/login';// 使用uni.request发送登录请求uni.request({url: loginUrl,method: 'POST',data: {username: username,password: password},success: (res) => {if (res.statusCode === 200 && res.data.code === '0000') {// 登录成功,获取tokenconst token = res.data.data.token;// 存储token到本地存储uni.setStorageSync('user_token', token);console.log('Token saved:', token);} else {// 登录失败的处理逻辑console.error('Login failed:', res.data.message);}},fail: (error) => {console.error('Request failed:', error);}});
}// 在需要的时候调用login函数
login('your-username', 'your-password');// 在其他页面获取token
const token = uni.getStorageSync('user_token');
if (token) {console.log('Token retrieved:', token);// 使用token进行其他操作
} else {console.log('No token found');// 没有找到token,可能需要重新登录
}