Home  >  Article  >  WeChat Applet  >  How to call global JS in WeChat development?

How to call global JS in WeChat development?

零下一度
零下一度Original
2017-05-26 10:35:452080browse

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


app版本:{{version}}

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn