Home > Article > WeChat Applet > Does the mini program have an immediate execution function?
Does the mini program have an immediate execution function?
The mini program is developed using JavaScript language, so you can use an immediate execution function and place it in onLoad It can be done in the life cycle. For example,
onLoad:function(){ (function () { console.log('小程序拥有立即执行函数'); }()); }
It is recommended to define a function and then call it in onLoad so that the code can be reused.
onLoad:function(){ this.de() }, de:function(){ ........... }
Recommended learning: Small program development
The above is the detailed content of Does the mini program have an immediate execution function?. For more information, please follow other related articles on the PHP Chinese website!