当前位置:网站首页>Uni app common functions /api
Uni app common functions /api
2022-07-05 03:56:00 【Chu Junjun】
(1)@tap="": Event triggered by finger click
(2)setTimeout: Set a timer , Execute the registered callback function after the timer expires
(3)uni.showToast: When we need to pop up the prompt box , You can use this function
methods: {
toshow() {
uni.showToast({
title: ' Jump out prompt ',
icon: "error"
});
}
effect :
(4)uni.showModal: Show modal pop ups , There can be only one OK button , You can also have both OK and Cancel buttons
methods: {
uni.showModal({
title:' Warning ',
content:' I am a bullet box ',
success: function (res) {
if(res.confirm) {
console.log(' I clicked the OK button ');
} else if (res.cancel) {
console.log(' I clicked the Cancel button ')
}
}
})
}
}
effect :
(5)uni.showActionSheet: Pop up the operation menu from the bottom
(6)setTimer: When you need to perform something at regular intervals, you need to use SetTimer function
(7)setInterval:setInterval() It's a function that can be called regularly , According to the specified period ( In milliseconds ) To call a function or evaluate an expression . Methods will call functions all the time , until clearInterval Called or window closed .
setTimer(){
let holdTime = 60; // Define variables and assign values
this.getCodeText = " Recapture (60)"
//setInterval() It's a function that can be called regularly , According to the specified period ( In milliseconds ) To call a function or evaluate an expression .
//setInterval Methods will call functions all the time , until clearInterval Called or window closed .
this.Timer = setInterval(()=>{
if(holdTime<=0){
this.getCodeisWaiting = false;
this.getCodeBtnColor = "#ffffff";
this.getCodeText = " Get verification code "
clearInterval(this.Timer);// Clear this function
return ; // Back to front
}
this.getCodeText = " Recapture ("+holdTime+")"
holdTime--;
},1000)
},
(8)clearInterval: Cancel from setInterval Set the timer .
(9)uni.hideKeyboard:() Hide the soft keyboard
(10)uni.showLoading: Show loading Prompt box , It is necessary to call uni.hideLoading To close the prompt box .
边栏推荐
- Smart pointer shared_ PTR and weak_ Difference of PTR
- Zero foundation uses paddlepaddle to build lenet-5 network
- Redis6-01nosql database
- NPM introduction link symbolic link
- 请问一下我的请求是条件更新,但在buffer中就被拦截了,这种情况我只能每次去flush缓存么?
- [summary of two registration methods]
- About authentication services (front and back, login, registration and exit, permission management)
- [PHP features - variable coverage] improper use, improper configuration and code logic vulnerability of the function
- A brief introduction to the behavior tree of unity AI
- Analysis of dagger2 principle
猜你喜欢
Plasticscm enterprise crack
Test d'automatisation de l'interface utilisateur télécharger manuellement le pilote du navigateur à partir de maintenant
Official announcement! The third cloud native programming challenge is officially launched!
Containerd series - detailed explanation of plugins
JWT漏洞复现
NEW:Devart dotConnect ADO. NET
[wp][introduction] brush weak type questions
v-if VS v-show 2.0
[untitled]
[an Xun cup 2019] not file upload
随机推荐
JWT vulnerability recurrence
@The problem of cross database query invalidation caused by transactional annotation
25K 入职腾讯的那天,我特么哭了
JWT漏洞复现
UI自动化测试从此告别手动下载浏览器驱动
[groovy] string (string type variable definition | character type variable definition)
Solve the problem that sqlyog does not have a schema Designer
Containerization Foundation
Containerd series - detailed explanation of plugins
What is test development? Why do so many companies hire test developers now?
Blue Bridge Cup single chip microcomputer -- PWM pulse width modulation
[understand series after reading] 6000 words teach you to realize interface automation from 0 to 1
[move pictures up, down, left and right through the keyboard in JS]
Easy processing of ten-year futures and stock market data -- Application of tdengine in Tongxinyuan fund
已解决(sqlalchemy+pandas.read_sql)AttributeError: ‘Engine‘ object has no attribute ‘execution_options‘
为什么百度、阿里这些大厂宁愿花25K招聘应届生,也不愿涨薪5K留住老员工?
Technology sharing swift defense programming
How is the entered query SQL statement executed?
阿里云ECS使用cloudfs4oss挂载OSS
Unity implements the code of the attacked white flash (including shader)