常用方法 整理-uniapp

本文整理了uni-app的几个实用方法,包括上传视频和图片、小数转百分比、时分秒倒计时、防抖处理、数组筛选及页面跳转。通过示例代码详细介绍了每个功能的实现方式,帮助开发者提升uni-app开发效率。
摘要由CSDN通过智能技术生成

上传视频

uploadImg() {

let that = this;

uni.chooseVideo({

count: 1,

compressed: false,

success: chooseImageRes => {

const tempFilePaths = chooseImageRes.tempFile;

console.log(chooseImageRes);

let token = uni.getStorageSync('token');

token = token ? token : 'X';

uni.showLoading({

title: 'loading...',

mask: true

});

uni.uploadFile({

url: '
',

file: tempFilePaths,

header: {

Authorization: 'Bearer ' +

token

},

success: uploadFileRes => {

uni.hideLoading();

},

fail: () => {

console.log(

'uploadImage#fail');

uni.hideLoading();

uni.showToast({

title: 'err',

icon: 'none'

});

}

});

}

});

},

上传图片

upload() {

uni.chooseImage({

count: 1,

sizeType: ['original', 'compressed'],

sourceType: ['camera',

'album'

], // camera调拍照,album是打开手机相册

success: (res) => {

console.log(res);

const tempFilePaths = res.tempFiles[0];

console.log(tempFilePaths);

// console.log('tempFilePaths555', tempFilePaths)

const tempFiles = res.tempFiles;

// console.log('tempFiles--555', tempFiles[0])

let token = '122174bf0b6a0c8de8e494fd10818c14'

uni.showLoading({

title: 'loading...',

mask: true

});

// 上传图片到服务器

uni.uploadFile({

url: '
', //服务器地址

fileType: "image", //ZFB必填,不然报错

// filePath: tempFiles, // 上面拍照返回或者选中照片返回的数组

file: tempFilePaths, // 上面拍照返回或者选中照片返回的数组

name: 'imgFile',

header: {

"token": token,

'content-type': 'multipart/form-data'

},

success: (uploadFileRes) => {

let imgData = JSON.parse(

uploadFileRes.data)

console.log('2222',

uploadFileRes);

uni.hideLoading();

// console.log('2222', imgData);

// console.log(imgData.data.imgUrl);

// console.log(this);

// this.selectedSrc = imgData.data.imgUrl

},

fail: (err) => {

console.log("err", err)

console.log(

'uploadImage#fail');

uni.hideLoading();

uni.showToast({

title: 'err',

icon: 'none'

});

}

});

}

});

},

小数转百分比

toPercent(point) {

let str = Number(point * 100);

str += '%';

return str;

},

时分秒倒计时

let activity_time={

houer: '24',

minute: '00',

second: '00'

}, //活动倒计时

activityTime() {

let that = this;

let timer = setInterval(function() {

if (that.activity_time.second == 0) {

if (

that.activity_time.minute == 0 &&

that.activity_time.houer == 0 &&

that.activity_time.second == 0

) {

clearTimeout(timer);

return;

}

if (that.activity_time.minute == 0) {

that.activity_time.houer = that.roundNumber(

that.activity_time.houer

);

that.activity_time.second = 59;

that.activity_time.minute = 59;

} else {

that.activity_time.minute = that.roundNumber(

that.activity_time.minute

);

that.activity_time.second = 59;

}

} else {

that.activity_time.second = that.roundNumber(

that.activity_time.second

);

}

}, 1000);

},

roundNumber(number) {

number--;

number = number.toString();

if (number.length == 1) {

return '0' + number;

}

return number;

},

防抖

let timers

if (this.timers) {

clearTimeout(this.timers);

}

this.timers = setTimeout(() => {

log(123)

}, 1000);

筛选数组所有值不为空

let bool = this.answerList.every(function(item, index) {

return item !== '';

});

if (bool) {

this.buttonState = true

}

跳转

goCheck(url) {

let that = this

let arr = [

{(主页面-setTabBar)},

{(主页面-setTabBar)}

];

if (url != '' && url != null) {

let bool = arr.some(function(item, index) {

return item.url == url;

});

if (bool) {

uni.switchTab({

url: url

});

return;

}

if (url.indexOf('h') == 0) {

window.location.href = url;

} else {

uni.navigateTo({

url: url

});

}

}

},

希望有不足的地方可以指出,持续改进

作者:superKun
链接:https://juejin.cn/post/7249386837368848439
来源:稀土掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

本课程讲了Vue3+Vue2+Uni-app(uniapp)入门基础与实战,其中还重点讲解了ES6、TypeScript这些基础知识,实战由两大价值5000元的真实企业级项目组成,分别是仿京东电商网站和仿美团微信点餐小程序,同时两大项目代码全部赠送,还赠送前后端架构模板,工作中直接使用。VUE和uni-app是目前热门的前端框架,本课程教你如何快速学会VUE和uni-app并应用到实战,教你如何解决内存泄漏,常用UI库的使用,自己封装组件和插件,正式上线白屏问题,性能优化、解决iphoneX“刘海”兼容性问题、微信支付、微信授权登录,获取位置在地图上显示,获取用户所在的城市和街道信息,微信小程序发布审核等。对正在工作当中或打算学习VUE和uni-app高薪就业的你来说,那么这门课程便是你手中的葵花宝典。学习技巧:学习当中不要只看,一定要多敲代码,如果碰到某一个知识点不是很明白,不要钻牛角尖,千万不要因为一个点,放弃整个森林,接着往下学,硬着头皮开发项目。只要能亲自开发一个完整的项目,你会发现不明白的地方自然而然就明白了,项目做出来就真正的学会了。此vue和uni-app课程以面试和实战为基础进行讲解,每个知识点都会让你知道在实际项目开发中如何使用,学习后,可以开发大型项目,增强逻辑思维,至少让你拥有3年以上开发经验的实力!代码和ppt均可下载!免费提供《企业级完整实战项目接口文档》,绝对可用
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值