上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 122 下一页
摘要: 小程序子组件事件交给父组件处理 子组件点击事件--传到父组件--父组件不处理(不写函数体) 传送到子组件中(写函数体执行) https://www.bilibili.com/video/BV1vv411H7Rh/ 父组件的点击事件 --由函数triggerEvent转发到子组件的tap自定义事件 < 阅读全文
posted @ 2024-04-20 09:09 与f 阅读(54) 评论(0) 推荐(0)
摘要: Vuex的核心组成、版本问题及store.js的使用、 Vuex中存值、取值以及获取变量值、异步同步操作和Vuex后台交互 //store //初始值 //设置值mutations this.$store.commit('setDemoValue方法名', value); //更新值action - 阅读全文
posted @ 2024-03-30 09:30 与f 阅读(32) 评论(0) 推荐(0)
摘要: 转 :https://blog.csdn.net/weixin_42436161/article/details/123114690 阅读全文
posted @ 2024-03-06 14:26 与f 阅读(32) 评论(0) 推荐(0)
摘要: 问题 当使用 curl 命令打开 HTTPS 网站,比如: curl -sSL https://www.github.com/ 显示如下错误: curl: (60) SSL certificate problem: unable to get local issuer certificate 根据错 阅读全文
posted @ 2024-01-27 20:07 与f 阅读(3204) 评论(0) 推荐(0)
摘要: curl去访问https的站点报错: curl -v https://www.baidu.com * SSLv3, TLS handshake, Client hello (1): * SSLv3, TLS handshake, Server hello (2): * SSLv3, TLS hand 阅读全文
posted @ 2024-01-27 20:06 与f 阅读(3172) 评论(0) 推荐(0)
摘要: 工具篇 Openssl源码 :github下载 per : 构建器【提取码:0000】 NASM : 汇编器 【提取码:0000】 Visual Studio 2019 成品 懒得编译,可以直接使用我编译好的64位静态库,直接下载 提取码:0000 环境配置 NASM 解压上述下载的压缩包,配置PA 阅读全文
posted @ 2024-01-24 09:38 与f 阅读(78) 评论(0) 推荐(0)
摘要: windows系统下的curl库编译有好几种形式。 方法一:下载了curl库后,解压文件,projects\Windows\文件夹下有各种vs项目的各种版本,打开生成DLL Release或DLL Release -DLL Windows SSPI即可. (DLL Release - DLL Ope 阅读全文
posted @ 2024-01-23 22:10 与f 阅读(2655) 评论(0) 推荐(0)
摘要: 转 : https://www.cnblogs.com/gd-luojialin/p/7581102.html https://blog.csdn.net/m0_67316550/article/details/124977756 阅读全文
posted @ 2024-01-22 16:33 与f 阅读(32) 评论(0) 推荐(0)
摘要: 下面是我在VS编译器上写的一个简单的dll文件,关于dll文件如何编写,我就不再赘述了。 .h文件 #ifndef _MYDLL_H #define _MYDLL_H #ifdef MYDLL_EXPORTS #define MYDLL_API __declspec(dllexport) #else 阅读全文
posted @ 2024-01-20 21:26 与f 阅读(537) 评论(0) 推荐(0)
摘要: c++11引入了Lambda表达式,使得开发人员可以更方便的创建匿名函数。Lambda表达式是c++语言的一个重要特性,它可以作为函数对象使用,可以用来替代一些繁琐的函数声明和定义。 语法: [capture list]是捕获列表,必填。 (parameter list)是参数列表,选填。 spec 阅读全文
posted @ 2024-01-09 14:58 与f 阅读(29) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 122 下一页