WeChat applet references other js files to implement code

不言
Release: 2018-06-27 15:31:08
Original
2330 people have browsed it

This article mainly introduces the relevant information on the implementation code of WeChat applet referencing other js files. Friends in need can refer to

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....");
}
Copy after login

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(); //最后我们需要执行才能生效!
}
})
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

About WeChat JS-SDK’s function of selecting mobile phone photo uploads

WeChat applet through the api interface Display json data to the applet

The above is the detailed content of WeChat applet references other js files to implement code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!