Home  >  Article  >  WeChat Applet  >  How to reference other JavaScript files in WeChat mini program

How to reference other JavaScript files in WeChat mini program

巴扎黑
巴扎黑Original
2018-05-11 16:04:244764browse

How to reference other js files in WeChat applet

1. We first create a common.js file and write our program in common.js,

function myfunc() {
console.log("myfunc....");
}

module.exports.myfunc = myfunc; This exposes the interface. If it is not exposed here, it cannot be referenced.

In the file domain js

var common = require("../../common.js"); Go and link it, just linking it is not enough!

var app;
var common = require("../../common.js");
Page({
data:{
},
onLoad:function() {
app = getApp();
this.setData({version:app.globalData.appName});
common.myfunc(); //最后我们需要执行才能生效!
}
})

The above is the detailed content of How to reference other JavaScript files in WeChat mini program. 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