摘要: CourseDetail.cshtml页面 <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-s 阅读全文
posted @ 2020-10-30 09:27 青兰柳 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 1 每个view都要有相对应的action吗?如果不需要,那如何跳转? 阅读全文
posted @ 2020-09-26 11:41 青兰柳 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 个人网站 https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index(扫码登陆) 配置微信能访问到的地址(用的是natapp 官网 https://natapp.cn/article/natap 阅读全文
posted @ 2020-09-18 16:29 青兰柳 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 1 选择时间时,代码 <el-form-item label="订货日期" label-width="80px"> <el-date-picker size="small" type="daterange" v-model="OrderDate" value-format="yyyy-MM-dd" 阅读全文
posted @ 2020-08-28 19:03 青兰柳 阅读(242) 评论(0) 推荐(0) 编辑
摘要: https://element.eleme.cn/#/zh-CN 阅读全文
posted @ 2020-08-27 10:11 青兰柳 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1安装rabbitmq先要安装erlang,这里就不演示了(两个版本要适应) 2nuget包(RabbitMQ.Client) 3appsetting配置(这里选择rabbitmq默认的) "RabbitMQ": { "MessageMQUserName": "guest", //我选的是默认的用户 阅读全文
posted @ 2020-08-20 10:55 青兰柳 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 1显示要安装redis(Redis Desktop Manager可视化工具,可装可不装) 这个安装教程很多,这里就不细讲了,需要注意的是一些路径,安装在哪个盘 输入cmd提示不是内部命令,就要转到相应的redis目录下执行 (输入下面两行命名就可以往redis中设置值了,get ke 阅读全文
posted @ 2020-08-15 16:04 青兰柳 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1 https://developers.weixin.qq.com/community/develop/article/doc/0008e63a5d8e30a4b30aaaa6556413 2https://blog.csdn.net/weimingjue/article/details/8004 阅读全文
posted @ 2020-08-10 17:16 青兰柳 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1使用场景在APP(是APP,不是其他,网页或者其他调用方式不同)中内集成支付宝支付 2去支付平台申请一个APPID(唯一标识) ,商家账号(PID,没有就自己申请一个) 3下载一个支付宝开放平台开发助手(其他的也行,只有能生成公钥私钥),生成公钥和私钥(私钥不能泄露),然后上传公钥生成支付宝公钥 阅读全文
posted @ 2020-08-10 11:44 青兰柳 阅读(2637) 评论(5) 推荐(0) 编辑
摘要: 1注册服务 services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>(); 2控制器依赖注入 private readonly IHttpContextAccessor _accessor; public ApiControll 阅读全文
posted @ 2020-08-08 21:59 青兰柳 阅读(270) 评论(0) 推荐(0) 编辑