摘要:
nuxt3项目运行 npm run build 将.output文件夹,放到服务器上 服务器上可以使用node直接运行或者使用pm2运行。 node版本 > 18 node直接运行 node .output/server/index.mjs pm2需要新建一个 ecosystem.config.js 阅读全文
摘要:
自定义相机,调用手机原生相机,自定义拍照或录制键。实际使用就是使用小程序的媒体组件<camera></camera>就可以了。 <view class=""> <camera class="camera" id="myCamera" :device-position="devicePosition" 阅读全文
摘要:
创建socker.js文件, 放在utils文件夹下 socket.js var ws= null; //建立的连接 var lockReconnect= false;//是否真正建立连接 var timeout= 3*1000;//30秒一次心跳 var timeoutObj= null;//心跳 阅读全文
摘要:
var data2 = [ {id: 0 , val: 'aaa'}, {id: 0 , val: 'bbb'}, {id: 2 , val: 'ccc'}, {id: 1 , val: 'ddd'}, {id: 1 , val: 'eee'} ] var result = [...new Set( 阅读全文
摘要:
var attrArr = [{name:'颜色',detail:['红','蓝','黄']},{name:'尺寸',detail:['20cm','30cm']}]var tmp = [] for (var i in attrArr) { tmp.push(attrArr[i].detail) } 阅读全文
摘要:
var arr = [ {value: "颜色", detail: ["红"]}, {value: "尺寸", detail: ["29cm", "30cm"]}] let result = arr.reduce((res, item) => { return item.detail.reduce( 阅读全文
摘要:
npm config set registry https://registry.npm.taobao.org 阅读全文
摘要:
微信小程序 Date.parse() iPhone不兼容问题 Date.parse()通过标准时间格式转换成时间戳,开发者工具上正常,但是到iphone真机上报错,原因是iPhone上不支持 2021-7-6 14:39:16 格式,需转换成 2021/7/6 14:39:27 date = "20 阅读全文
摘要:
可先在app.js里定义一个全局变量。 globalData:{ arguments: null } 然后在点击事件里改变全局变量。 toTabPage(e){ let arg = e.currentTarget.dataset.arg; getApp().globalData.arguments 阅读全文
摘要:
微信小程序 wx.navigateTo传参,参数过长被截取问题解决办法: 跳转时参数先编码,到第二个页面再解码 当前页面: let str = encodeURIComponent(JSON.stringify(data)); wx.navigateTo({ url: './orderInfo/in 阅读全文