08 2022 档案
摘要:1、length() 字符串的长度 例:char chars[]={'a','b'.'c'}; String s=new String(chars); int len=s.length(); 2、charAt() 截取一个字符 例:char ch; ch="abc".charAt(1); 返回'b'
阅读全文
摘要:报错信息:Uncaught (in promise) Error: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.
阅读全文
摘要:request.js?b775:101 Uncaught (in promise) Error: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exceptio
阅读全文
摘要:GUID, 即Globally Unique Identifier(全球唯一标识符) 也称作UUID(Universally Unique IDentifier) 。 GUID是一个通过特定算法产生的二进制长度为128位的数字标识符,用于指示产品的唯一性。GUID 主要用于在拥有多个节点、多台计算机
阅读全文
摘要:报错信息: request.js?b775:101 Uncaught (in promise) Error: Invalid bound statement (not found): com.ruoyi.sysparm.mapper.TbDictTypeMapper.updateTbDictType
阅读全文
摘要:el-form的入门学习知识点el-form标签的核心元素1. :model用于保存表单的数据对象2. :rules用于对表单数据对象的校验3. ref指定表单对象名称4. label-width指定label的宽度5. :label-position指定label的位置6. :inline指定是否
阅读全文
摘要:Could not autowire. No beans of 'BookService' type found. Idea的SpringBoot工程里遇到Could not autowire. No beans of ‘BookService’ type found。 解决办法: 换成@Resou
阅读全文