上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: 安装go 下载安装地址:https://studygolang.com/dl 设置国内镜像 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct 安装 goland 下载地址:https://www.jetbrain 阅读全文
posted @ 2021-11-16 13:12 JaydenQiu 阅读(84) 评论(0) 推荐(0)
摘要: jq.d.ts declare var jQuery:(selector: string) => any 后面就可以直接使用了(只要在项目中就不用引入) jQuery('#foo') ts高质量声明文件 https://www.typescriptlang.org/dt/search?search= 阅读全文
posted @ 2021-10-26 09:09 JaydenQiu 阅读(47) 评论(0) 推荐(0)
摘要: interface Radio { switchRadio(trigger: boolean): void } class Car implements Radio { //继承一个接口 switchRadio(){} } class Car1 implements Radio,Batattery 阅读全文
posted @ 2021-10-18 09:05 JaydenQiu 阅读(41) 评论(0) 推荐(0)
摘要: 一、基础类型 布尔值 let isDone: boolean = false; 数字 let decLiteral: number = 6; 字符串 let name: string = "bob"; 数组 let list: number[] = [1, 2, 3]; 元组 Tuple let x 阅读全文
posted @ 2021-09-09 09:37 JaydenQiu 阅读(104) 评论(0) 推荐(0)
摘要: 获取基本用户数据 profile(e) { try{ wx.getUserProfile({ desc: '用于完善会员资料',//后续会进行展示 success: res => { wx.setStorage({ key:"userInfo", data:JSON.stringify(res.us 阅读全文
posted @ 2021-09-03 09:25 JaydenQiu 阅读(84) 评论(0) 推荐(0)
摘要: 小程序调用接口生成预付订单,接收prepay_id unified(){ wx.request({url: "http://localhost/personalities/server/?head=unified", method: 'GET', data:{ body : this.data.bo 阅读全文
posted @ 2021-09-03 09:18 JaydenQiu 阅读(60) 评论(0) 推荐(0)
摘要: 模式一: 1、微信商户号开通 Native支付 ,设置回调链接 2、根据产品id,生成二维码 public function generatePayQrcode() { $productId = $this->getPost('productId'); if (!$productId) return 阅读全文
posted @ 2021-08-26 18:13 JaydenQiu 阅读(489) 评论(0) 推荐(0)
摘要: index.html注册 var version = "2021/7/8 11:32:10"; //判断是否升级https var host = window.location.host; if(host=="" || host==""){ var http_equiv = document.que 阅读全文
posted @ 2021-08-23 09:29 JaydenQiu 阅读(496) 评论(0) 推荐(0)
摘要: flutter官网sdk包:https://flutter.dev/docs/get-started/install 中文网包:https://flutter.cn/docs/get-started/install 配置系统环境变量path:D:\flutterSDK\flutter\bin 是否安 阅读全文
posted @ 2021-06-30 09:12 JaydenQiu 阅读(47) 评论(0) 推荐(0)
摘要: 参考结构 初始化npm npm init -y 安装webpack: cnpm install --save-dev webpack webpack-cli 打包js const path = require('path'); module.exports = { entry: './src/ind 阅读全文
posted @ 2021-04-11 17:49 JaydenQiu 阅读(1578) 评论(0) 推荐(1)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页