使用 FastAdmin 的 epay 插件时,我们通过传不同的 method 决定支付方式。 method=mp 时表示公众号支付,此时必须要 openid,但是插件里并没有说明如何获取。 其实这个 openid 的获取,addons/epay/library/Service.php 中已经写好了 ...
分类:
微信 时间:
2021-05-03 12:17:32
阅读次数:
0
文档地址:wkteam.gitbook.io所有个人号模块分析: 登录模块 登录微控平台 member/login获取微信二维码 user/login执行微信登录 getIPadLoginInfo获取联系人列表(群、好友) getAllContact二次登录(退出微信号 需要再次登录 调用此接口即可 ...
分类:
微信 时间:
2021-05-03 12:00:39
阅读次数:
0
B/S架构: (Browser/Server,浏览器/服务器模式),是web端的一种模式架构,像谷歌浏览器,QQ浏览器,hao123等都是B/S架构。 C/S架构: (Client-Server,客户机/服务器模式),是App端的一种模式架构,像微信,QQ,王者等需要在手机上下载的都是C/S架构。 ...
分类:
其他好文 时间:
2021-04-30 12:21:12
阅读次数:
0
禁用原生导航栏,APP、h5和微信小程序禁用的方法不一样哦,在page.json中配置 { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "navigationStyle": "custom",//禁用 ...
分类:
移动开发 时间:
2021-04-30 12:06:06
阅读次数:
0
IaaS 平台构建 1.关闭防火墙,禁止开机自启 systemctl stop firewalld systemctl disable firewalld 2.设置主机名 hostnamectl set-hostname controller 设置主机名compute 3.设置selinux,per ...
分类:
其他好文 时间:
2021-04-29 12:11:43
阅读次数:
0
开发工具下载地址 https://q.qq.com/wiki/tools/devtool/#开发者工具下载 开发阅读文档 https://q.qq.com/wiki/develop/miniprogram/frame/ ...
分类:
微信 时间:
2021-04-29 11:47:56
阅读次数:
0
目录: 1. 下载tomcat 解压,安装 2. 设置8080端口通过防火墙 tomcat可以到tomcat的官网下载:https://tomcat.apache.org/,我下载的是9.0.45的版本 解压缩并移动文件到指定文件夹 cd到 tomcat/bin 文件夹下 执行 ./startup. ...
分类:
其他好文 时间:
2021-04-28 12:13:50
阅读次数:
0
防火墙由netfilter组成,iptables是控制netfilter的软件 iptables(重点)- 用户空间的工具 环境准备 systemctl stop firewalld.service systemctl disable firewalld.service 或systemctl dis ...
分类:
系统相关 时间:
2021-04-28 12:11:32
阅读次数:
0
绑定事件 在input标签内使用bindinput关键字,可以绑定input事件 例如: index.wxml中 `<input type="text" bindinput="handInputOne">` index.js中 `handInputOne(a){ console.log(a) //若 ...
分类:
微信 时间:
2021-04-28 11:50:08
阅读次数:
0
问题描述 微信小程序通过web-view组件内嵌H5界面,H5界面通过video标签播放mp4格式视频 但是小程序内视频没有声音,直接浏览器打开H5是正常的 问题定位解决 小程序本身还是H5,小程序只不过是加了个壳子而已 H5原先没有使用HTTPS,套上小程序后才加上了HTTPS,并且强制HTTP自 ...
分类:
微信 时间:
2021-04-28 11:41:38
阅读次数:
0