小程序
小游戏
企业微信
微信支付
扫描小程序码分享
大佬们,想问一下,有一个方法在不同面需要反复使用,用什么方法使,在需要使用这个方法调用这个代码就行了,避免反复写?(应该是把这个方法写成一个js文件,要使用时,直接调用就是。但是不知道细节)
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
新建一个js文件
function
test(){
...
}
module.exports=test;
需要引用的页面
var
test=require(
'./test.js'
);
test();
或者写在app.js里
App({
})
使用的时候
app=getApp();
app.test();
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
谢谢,就是需要这种,简单直白的代码
模块化
可以将一些公共的代码抽离成为一个单独的 js 文件,作为一个模块。模块只有通过 module.exports 或者 exports 才能对外暴露接口。
module.exports
exports
https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/module.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
新建一个js文件
function
test(){
...
}
module.exports=test;
需要引用的页面
var
test=require(
'./test.js'
);
test();
或者写在app.js里
App({
test(){
...
}
})
使用的时候
var
app=getApp();
app.test();
谢谢,就是需要这种,简单直白的代码
模块化
可以将一些公共的代码抽离成为一个单独的 js 文件,作为一个模块。模块只有通过
module.exports
或者exports
才能对外暴露接口。https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/module.html