博主首页
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 47 下一页
摘要: win10的系统,使用下面的命令安装vue后 npm install -g @vue/cli 出现找不到 vue-cli-service 命令的情况'vue-cli-service' 不是内部或外部命令,也不是可运行的程序或批处理文件。 清理 node_modules 重新安装,试了不管用,最后直接 阅读全文
posted @ 2022-03-15 09:32 笑~笑 阅读(9066) 评论(0) 推荐(0)
摘要: connection.timeout(1000*1000); connection.maxBodySize(1024*1024*100); Connection.Response execute = connection.method(Connection.Method.POST).execute( 阅读全文
posted @ 2022-03-14 16:09 笑~笑 阅读(319) 评论(0) 推荐(0)
摘要: mysql默认将tinyint(1)变成true,false; 第一种 可以改连接url?tinyInt1isBit=false 第二种 自定义查询sql时将类型转换为数值型 (字段+0)即可将数据转为数值型 阅读全文
posted @ 2022-03-14 16:08 笑~笑 阅读(545) 评论(0) 推荐(0)
摘要: @Overridepublic void signForm(HttpServletResponse response, Map<String, Object> map) { try{ String substring = url.substring(0, url.indexOf("?")); Str 阅读全文
posted @ 2022-03-14 16:07 笑~笑 阅读(215) 评论(0) 推荐(0)
摘要: mui('.mui-slider').slider().gotoItem(2); 阅读全文
posted @ 2022-02-17 15:39 笑~笑 阅读(165) 评论(0) 推荐(0)
摘要: 不要在没有plus和mui的环境下调用相关API 普通浏览器里没有plus环境,只有HBuilder真机运行、打包后、或流应用环境下才能运行plus api。 在普通浏览器里运行时plus api时控制台必然会输出plus is not defined错误提示。 mui作为一个前端框架,你必须保证当 阅读全文
posted @ 2022-02-15 13:40 笑~笑 阅读(963) 评论(0) 推荐(0)
摘要: subProjectLinkPOS=subProjectLinkPOS.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Sub 阅读全文
posted @ 2022-01-24 17:32 笑~笑 阅读(33) 评论(0) 推荐(0)
摘要: JPA的计数查询 这种格式的查询 可以不用写sql int countBySupEngCode(String supEngCode); 确认你的dao层继承的是JpaRepository countByOpenIdAndStatus【count,By,And】是固定格式哦 返回值一定是int,否则会 阅读全文
posted @ 2022-01-21 11:04 笑~笑 阅读(199) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { List<Object> list = new ArrayList<>(); list.add(1); list.add(2); list.add(3); list.add(4); list.add(5); list. 阅读全文
posted @ 2022-01-20 15:19 笑~笑 阅读(40) 评论(0) 推荐(0)
摘要: 5+APP各独立模块中已经集成了功能所需权限的动态申请机制 DCloud在native.js中为Android提供了动态申请权限的功能。 开发者通过调用plus.android.requestPermissions申请权限。 参数permissions为所需权限数组;resultCallback为申 阅读全文
posted @ 2022-01-19 17:35 笑~笑 阅读(886) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 47 下一页