上一页 1 ··· 4 5 6 7 8 9 10 下一页

解决 .net core基础之编码问题-System.ArgumentException: ‘gb2312‘ is not a supported encoding name

摘要: 在利用webClient 抓取 编码方式为 GB2312 网页 提示不支持‘gb2312‘ is not a supported encoding name 解决办法 : 1.nuget引用dll:System.Text.Encoding.CodePages 2. startup文件中配置 //直接 阅读全文
posted @ 2021-10-29 10:32 码农at突泉 阅读(923) 评论(0) 推荐(0) 编辑

删除mysql数据库后 ,如何找回以前的数据库呢??

摘要: 最近安装了appserv软件,但将其卸载后发现mysql不能使用 了,索性将mysql删除,删除突然想起来数据库未备份!!!怎么找回以前的数据呢??? 网上找了好多,但没几个能说清楚,研究好久,终于解决了。具体步骤如下: 一、备份data文件夹。 (数据都在这个文件夹)文件夹。MySql软件虽然删除 阅读全文
posted @ 2021-10-27 18:22 码农at突泉 阅读(1101) 评论(0) 推荐(0) 编辑

配置 mysql 密码 提示 Access denied for user 'root'@'localhost' (using password: YES)解决办法

摘要: 问题重现:(以下讨论范围仅限Windows环境): C:\AppServ\MySQL> mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using pass 阅读全文
posted @ 2021-10-27 17:54 码农at突泉 阅读(1639) 评论(0) 推荐(0) 编辑

配置 免安装版本 mysql 5.7.20

摘要: 参考:https://blog.csdn.net/qq_39135287/article/details/82117234第一步:下载Mysql官网下载地址:https://dev.mysql.com/downloads/mysql/1、鼠标滑下来,找到Other Download中的 Window 阅读全文
posted @ 2021-10-27 17:47 码农at突泉 阅读(50) 评论(0) 推荐(0) 编辑

5.springmvc springmvc.xml 详解

摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2021-10-27 11:42 码农at突泉 阅读(189) 评论(0) 推荐(0) 编辑

4.springmvc 控制器方法中 Json转换

摘要: 1.打开 https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.12.5 2.分别找以下3个依赖 3. 在工程 pom.xml 分别添加 以下依赖 <dependency> <group 阅读全文
posted @ 2021-10-27 11:35 码农at突泉 阅读(52) 评论(0) 推荐(0) 编辑

3.springmvc Action向视图传值

摘要: 一、 通过Request.setAttribute("key","vlaue") @RequestMapping(value="showUserInfo" ) public String showUserInfo(User user , HttpServletRequest req ) { req. 阅读全文
posted @ 2021-10-26 15:25 码农at突泉 阅读(70) 评论(0) 推荐(0) 编辑

2.springMvc 知识点 RequestMapping、RequestParam、post请求 中文乱码

摘要: 1 @RequestMapping("/Hello") 2 public String Hello( @RequestParam(value="uname",defaultValue ="没有名字") String Name){ 3 4 System.out.println("参数:["+Name+ 阅读全文
posted @ 2021-10-25 22:03 码农at突泉 阅读(236) 评论(0) 推荐(0) 编辑

vue过滤器

摘要: 1.全局过滤器 对一个页面的所有vue模块均能生效,参加以下代码: <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> </head> <body> <div id="app"> <p> { 阅读全文
posted @ 2021-10-17 21:13 码农at突泉 阅读(88) 评论(0) 推荐(0) 编辑

vue 第三天

摘要: 1.v-if 与 v-show区别 <div v-if="flag" @click="flag=!flag" > v-if </div> <div v-show="flag" @click="flag=!flag" > v-show </div> <input type="button" name= 阅读全文
posted @ 2021-10-15 11:43 码农at突泉 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页