2021-07-06发表学习笔记3 分钟读完 (大约425个字)小程序封装request请求工具使用示例 统一管理API : 1234const request = require('../utils/request')// 首页数据export const getIndexData = (data = {}) => request.get('/api/index', data, false) 在页面对应的js中引用: 1import {getIndexData} from "../../service/index";阅读更多
2021-06-30发表学习笔记几秒读完 (大约108个字)JS计算时间差(天、小时、分钟前) 1<view>{{time.getDateDiff(nowTime, timeStamp)}}</view>阅读更多
2021-05-13发表学习笔记9 分钟读完 (大约1299个字)JS模块化,require、import和exportrequire遵循AMD规范,在运行时加载,可以将js文件以模块的方式引入。 12345// 引入hello模块const hello = require('./hello');// 调用hello模块中使用exports暴露的world()方法hello.world();阅读更多