码迷,mamicode.com
首页 >  
搜索关键字:decode error - outpu    ( 32906个结果
HTTP协议
(1)HTTP版本 HTTP/1.0:HTTP短连接 HTTP/1.1:HTTP长连接 HTTP/2.0:HTTP长连接+优化,支持更多并发连接 说明:可以使用curl -v www.baidu.com命令查看版本(curl相当于Linux的浏览器) (2)HTTP请求方法 方法 说明 支持的HTT ...
分类:Web程序   时间:2021-06-02 16:04:48    阅读次数:0
Ajax 和 JSON
Ajax:异步更新页面的技术,必须在http或者https网络网络协议下使用 1.原生js实现:共4步 2.jQuery:$.ajax(配置对象); 常用参数:url, type, data, success, error 3.fetch:fetch(配置).then(处理数据函数).then(接收 ...
分类:Web程序   时间:2021-06-02 15:26:14    阅读次数:0
Java面向对象04
接口、内部类、异常[简单分类、异常体系结构、Error、Exception] ...
分类:编程语言   时间:2021-06-02 14:59:24    阅读次数:0
nginx配置数据
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:其他好文   时间:2021-06-02 14:41:17    阅读次数:0
关于异常的学习总结
一、异常 1.什么是异常? 在程序执行过程中,出现的非正常的、最终导致JVM的非正常停止的情况,就是异常 2.异常体系 异常机制的存在就是为了帮使用者找出程序中的问题所在,异常的根类是java.lang.Throwable,在其下还有两个子类:java.lang.Error和java.lang.Ex ...
分类:其他好文   时间:2021-06-02 14:40:22    阅读次数:0
nginx命令使用
NGINX帮助 -h [19:08:40 root@localhost sbin]#nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g direc ...
分类:其他好文   时间:2021-06-02 13:27:09    阅读次数:0
mysql之 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 11
问题描述:启动MySQL后,出现连接不上,报 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 11[root@mysql01 ~]# service mysql startStarting MySQL [ OK ][root@mysql01 ~]# ...
分类:数据库   时间:2021-06-02 13:23:04    阅读次数:0
vue解决跨域
1.axios基本使用 // axios 中的GET请求axios.get( '/user', { params: { ID: ‘001’ } },{ headers:{"Authorization":"Bas"+"ccccccc"} } ) .then(function (response) { ...
分类:其他好文   时间:2021-06-02 12:49:57    阅读次数:0
Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available.
一、报错信息 Error:Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available. Compilation of Maven projects is sup ...
分类:其他好文   时间:2021-06-02 12:26:11    阅读次数:0
类的继承中的super()
在python中,关于类的继承有很多场景和知识点。今天聚焦在一个场景:有一个父类A,类中定义了某个问题中的通用属性和方法(即后面的子类都需要用到),在子类B中需要继承这些属性和方法,同时添加自己特有的属性和方法,应该如何实现? 在子类中,继承并初始化父类属性的方式有两种: 显示调用父类的初始化函数, ...
分类:其他好文   时间:2021-06-02 12:24:54    阅读次数:0
32906条   上一页 1 ... 11 12 13 14 15 ... 3291 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!