02 2021 档案
摘要:通过wx.upload实现上传多个图片 uploadFiles(fileList, name, count, fileName, filePath, fileURLs) { var that = this; wx.uploadFile({ url: that.url + "base/uploadFi
阅读全文
摘要:var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-????) myDate.getMonth(); //获取当前月份(0-11,0代表1月) myDate.g
阅读全文
摘要:1.axios axios({ url:'https://...', methods:'get', params:{ id: 'wdnmd' } }).then(res=>{ console.log(res); }) //methods可以不写默认get //不推荐使用params,本质是直接在ur
阅读全文