所有类别

  • DTO介绍

    看图, dto所处位置,主要是用于业务逻辑层service和表示层servlet之间的数据传输什么是DTO(Data Transfer Object)数据传输对象?DTO是一个比较特殊的对象,他有两种存在形式:在后端,他的存在形式是java对象,也就是在controller里面定义的那个东东,通常在后端不需要关…

    2024-06-17 128

  • SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed

    报错解释:这个错误通常表示PHP无法通过网络连接到指定的MySQL服务器。具体来说,php_network_getaddresses 是PHP尝试获取MySQL服务器IP地址的一个函数,而getaddrinfo failed 表示这个函数无法解析主机名(可能是因为DNS解析问题,或者主机名根本不存在)。解决方法:检…

    2024-05-23 206

  • ERROR1118 的报错信息

    ERROR1118 的报错信息分为两种:1. ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs.一行…

    2024-05-23 201

  • MySQL报错:ERROR 1118 (42000): Row size too large. 或者 Row size too large (> 8126).

    用sql文件建表时,提示错误:ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs.报错原因:…

    2024-05-23 190

  • HTML DOM readyState 属性

    定义和用法readyState 属性返回当前文档的状态(载入中……)。该属性返回以下值:uninitialized - 还未开始载入loading - 载入中interactive - 已加载,文档与用户可以开始交互complete - 载入完成语法document.readyState=====================1. document.readyState1.…

    2024-05-18 141