index下标 长度number
that.listactive.splice(index, number)
...
yekong
3年前 (2022-02-06)
喜欢
uniapp 开发时,需要用到全局变量.
store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
i...
yekong
3年前 (2022-02-05)
喜欢
设置代理
export http_proxy=http://127.0.0.1:1087 https_proxy=http://127.0.0.1:1087
取消代理
unset http_proxy https_proxy
...
yekong
3年前 (2022-02-04)
喜欢
增加一个packages目录然后在pages.json内添加分包内容
{
"pages": [{
"path": "pages/home/home",
"style": {
&quo...
yekong
3年前 (2022-02-04)
喜欢
uniapp 微信小程序代码压缩minified
"setting": {
"urlCheck": false,
"minified": true
},
"mp-weixin": ...
yekong
3年前 (2022-02-03)
喜欢
eggjs 读取数据库代码 效果,读取数据库前需要先连接数据库
路由配置
// 读取数据库
router.get('/api/user/:name', controller.user.info);
controller 代码
// app/controller/use...
yekong
3年前 (2022-02-03)
喜欢
添加配置
config/plugin.js
'use strict';
/** @type Egg.EggPlugin */
// module.exports = {
// // had enabled by egg
// mysql: {
// enabl...
yekong
3年前 (2022-02-03)
喜欢
接口请求示例图
安装依赖
npm i tls-sig-api-v2
使用源码
'use strict';
const Controller = require('egg').Controller;
let TLSSigAPIv2 = require('tls-sig-api...
yekong
3年前 (2022-02-03)
喜欢
datalist.splice(0, 0, {
id: '',
name: '全部'
});
...
yekong
3年前 (2022-02-02)
喜欢
腾讯im官方文档
腾讯im官方文档
根据文档说明,我们可以看到IM的uniapp版本 这里我们选择国内的gitee地址进行查看
gitee地址
gitee地址
按照readme的说明文档进行相关操作。注册账号,然后下载代码安装依赖。
# 命令行执行
git clone http...
yekong
3年前 (2022-02-02)
喜欢