Home>Article>Web Front-end> How to use global functions to pass parameters between uniapp components
The method of using global functions to pass parameters between uniapp components: 1. Listen to the global function in the component that receives the parameters; 2. Register the global function in the component that passes the parameters, the code is [uni.$emit( 'Function name', parameters)].
The operating environment of this tutorial: windows7 system, uni-app2.5.1 version, Dell G3 computer.
Recommended (free):uni-app development tutorial
Utilize global functions between uniapp components Method of passing parameters:
1. Listen to the global function in the component that receives the parameters
uni.$on('函数名',(形参数)=>{ ... });
2. Register the global function in the component that passes the parameters
uni.$emit('function name', parameters)
Code example:
Receive parameters:
meme {{this.num}}
Pass parameters:
Related free learning recommendations:Programming videos
The above is the detailed content of How to use global functions to pass parameters between uniapp components. For more information, please follow other related articles on the PHP Chinese website!