Home > Article > WeChat Applet > How to call global JS in WeChat development?
This article mainly introduces the relevant information of calling the global JS in the scope of WeChat applet. Friends who need it can refer to it
Detailed explanation of calling global JS in this scope of WeChat applet
Local wxml file
<view> app版本:{{version}} </view>
Local js file
var app; Page({ data:{ }, onLoad:function() { app = getApp(); this.setData({version:app.globalData.appName}); } })
Global js file
//app.js App({ globalData:{ appName:"hcoder" }, test:function () { console.log("ok"); } })
[Related recommendations]
1. Detailed explanation of small program development using Underscore.js
2. JS dynamic modification style for WeChat development
3. Detailed explanation of examples of referencing other js files for WeChat development
4. Example tutorial of life cycle function of WeChat development
The above is the detailed content of How to call global JS in WeChat development?. For more information, please follow other related articles on the PHP Chinese website!