uniapp引用外部js_Uniapp JS 全局变量的几种实现方式

9b1f159d8b9b4f63af3a171de9f0f2fa.png

公用模块

定义一个专用的模块,用来组织和管理这些全局的变量,在需要的页面引入。

注意这种方式只支持多个vue页面或多个nvue页面之间公用,vue和nvue之间不公用。

示例如下:

在 uni-app 项目根目录下创建 common 目录,然后在 common 目录下新建 helper.js 用于定义公用的方法。const websiteUrl = 'http://uniapp.dcloud.io';

const now = Date.now || function () {

return new Date().getTime();

};

const isArray = Array.isArray || function (obj) {

return obj instanceof Array;

};

export default {

websiteUrl,

now,

isArray

}

接下来在 pages/index/index.vue 中引用该模块

import helper from '../../common/helper.js';

export default {

data() {

return {};

},

onLoad(){

你可能感兴趣的:(uniapp引用外部js)