上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 65 下一页
摘要: 第一步、查看项目所在的位置; 第二步、找到项目位置处的library文件夹,将第三方拓展的包放到该目录下; 第三步、在项目中通过 include 的方式引入我们需要的包。 阅读全文
posted @ 2020-06-10 15:05 GetcharZp 阅读(324) 评论(0) 推荐(0) 编辑
摘要: Arduino的shiftOut函数主要作用于74HC595; 核心思想: 通过十进制数字 0~255 对于与8位二进制的数,从而来控制各个引脚的高低电平; 使用方法: shiftOut(dataPin, clockPin, bitOrder, value) 共四个参数,而前三个参数一般配置好了就不 阅读全文
posted @ 2020-06-10 09:58 GetcharZp 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 模拟输入analogRead()函数的返回值范围是0 到1023; 而模拟输出analogWrite()函数的输出值范围是0 到255; 所以: val = analogRead(potpin); // 读取传感器的模拟值并赋值给valanalogWrite(ledpin, val / 4); // 阅读全文
posted @ 2020-06-09 09:32 GetcharZp 阅读(2647) 评论(0) 推荐(0) 编辑
摘要: 问题描述: 在安装thinkPHP的时候,使用命令 composer create-project topthink/think=5.1.* tp5 提示上面的错误;错误提示:zsh: no matches found: 5.1.* 暂时的解决办法: 指定确定的版本号,不要使用 * 这种 compo 阅读全文
posted @ 2020-06-08 21:14 GetcharZp 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 原因:未引入 bootstrap3 的JS; 解决办法:引入 bootstrap3 的JS文件 阅读全文
posted @ 2020-06-08 21:12 GetcharZp 阅读(513) 评论(2) 推荐(0) 编辑
摘要: 支付成功后,再如下路径的order.php的payResult() 方法中可以进行支付成功后自定义的一些操作。 阅读全文
posted @ 2020-06-08 21:10 GetcharZp 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 查看订单表ewei_shop_order的status字段,为0表示未支付; 支付状态: status{ -1取消状态(交易关闭),0普通状态(没付款: 待付款 ; 付了款: 待发货),1 买家已付款(待发货),2 卖家已发货(待收货),3 成功(可评价: 等待评价 ; 不可评价 : 交易完成)4 阅读全文
posted @ 2020-06-08 21:07 GetcharZp 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 把 Preserve log 钩上,再进行测试 阅读全文
posted @ 2020-06-08 21:03 GetcharZp 阅读(461) 评论(0) 推荐(0) 编辑
摘要: Nginx 安装 brew install nginx Nginx配置文件位置 /usr/local/etc/nginx/nginx.conf web服务器默认目录 /usr/local/Cellar/nginx/1.17.10/html 阅读全文
posted @ 2020-05-19 09:37 GetcharZp 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 在 【Editor】->【Color Scheme】中修改,如图: 阅读全文
posted @ 2020-05-19 09:35 GetcharZp 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 65 下一页