WeChat applet references other js files to implement code
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....");
}
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 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version





