官方首页 https://uniapp.dcloud.io/
UI 框架 https://www.uviewui.com/
显示版本 console.log(uni.$u.config.v);
- 本地存储
// 同步存储
uni.setStorageSync('key', 'value');
// 同步获取
let key = uni.getStorageSync('key');
// 异步存储
uni.setStorage({
key: 'key',
data: 'value',
success: function () {
// 存储成功的回调
}
});
// 下面这行会比存储成功的回调先执行
let val = 1;
// 异步获取
uni.getStorage({
key: 'key',
success: function (res) {
// 获取成功的回调
}
});
console.log(this.$u.trim(' abc ')); js中
{{$u.trim(str, 'all')}} 模板中
this.$u.toast('Hello uView!');
<u-button @click="$u.toast('Hello uView0!');">按钮组件演示</u-button>
console.log(this.$u.os()) 返回ios android
console.log(this.$u.sys()) 设备信息
时间为:{{'1585926095536' | date('yyyy-mm')}}
this.$u.date('1585926095536', 'yyyy-mm')
{{$u.timeFrom(timestamp, 'yyyy年mm月dd日')}}
{{'1585926095536' | timeFrom('yyyy-mm')}}
this.$u.timeFrom(this.timestamp); //多少秒之前
console.log(this.$u.randomArray([1,2])); 打乱数组
this.$u.guid(20) 随机字符
console.log(this.$u.rgbToHex('rgb(13, 145, 20)')); rgb转十六进制
console.log(this.$u.hexToRgb(this.hex)); 十六转换rgb
this.$u.colorToRgba('#000000', 0.35); 透明
console.log(this.$u.colorGradient('rgb(250,250,250)', 'rgb(252,252,252)', 3)); 渐变 3是颜色个数
console.log(this.$u.random(1, 3)); 随机数一个
console.log(this.$u.queryParams({
name: 'lisa',
age: 20
}));
//getpost其他不要
this.$u.post('http://www.example.com', {
id: 3,
menu: 1
}).then(res => {
console.log(res);
});
// 带上header(对象形式),由于header为第三个参数,如果不需要请求参数,第二个参数传一个空对象"{ }"即可
this.$u.get('http://www.example.com', {}, {
token: 'xyz'
}).then(res => {
console.log(res);
});
// 无参数跳转
this.$u.route('/pages/components/empty/index');
// 带参数
this.$u.route('/pages/components/empty/index', {
name: 'lisa',
age: 20
});
import md5Libs from "uview-ui/libs/function/md5";
console.log(md5Libs.md5('uView'))
作者:Yoby 创建时间:2021-11-03 22:01
更新时间:2024-12-05 13:26
更新时间:2024-12-05 13:26