微信小程序引入模块,获取 App.js

创建一个模块 utils/appConfig.js

const appConfig = {
  host: 'https://www.baidu.com',
  sayHi(e) {
    console.log('hi' + e);
  }
}
export default appConfig

导入创建的模块使用 其他 .js 文件内

import appConfig from '../../../utils/appConfig.js';
console.log(appConfig.host);
appConfig.sayHi('朱小明')

获取 App.js

//app.js
App({
  userToken:'zhu xiao ming',

  /// 省略其他
  })
let app = getApp();
console.log(app.userToken);

获取更多小程序相关文章

你可能感兴趣的:(微信小程序引入模块,获取 App.js)