yjanb11

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2019年12月18日

摘要: 比如需要这样的效果: select * from user where name like '%四%' or name like '%五%'可以使用 REGEXP 写成: select * from user where name regexp '四|五' 阅读全文
posted @ 2019-12-18 09:35 yjanb11 阅读(4711) 评论(0) 推荐(0) 编辑

2019年12月17日

摘要: 网有文档 https://uniapp.dcloud.io/collocation/manifest?id=h5-router 阅读全文
posted @ 2019-12-17 14:32 yjanb11 阅读(472) 评论(0) 推荐(0) 编辑

2019年12月13日

摘要: 1 传输格式 传输格式均为JSON字符串,使用spring mvc返回对象,并自动通过fasterxml jackson工具类(JsonMapper.java)进行对象到JSON转换。 输出格式符合JSON标准,UTF-8编码。 2 账号登录 http://127.0.0.1:8080/ jeesi 阅读全文
posted @ 2019-12-13 13:51 yjanb11 阅读(73) 评论(0) 推荐(0) 编辑

2019年12月12日

摘要: 最近在vue项目中遇到一个报错,虽然不影响使用,但是报错还是得解决的 一进入某页面,就会冒出这么一长串的报错,这个是由于v-for循环里,key值可能重复了,所以会报这个错。查看了一下页面代码: key值是必须唯一的,如果重复就会报错可以把key值改为index,就可以避免这个情况: ——————— 阅读全文
posted @ 2019-12-12 09:14 yjanb11 阅读(91) 评论(0) 推荐(0) 编辑

2019年12月2日

摘要: select * from act_hi_detail where TEXT_='ZN00254' select * from act_ru_execution where BUSINESS_KEY_ like '%1b798068e3814ca98d5a3bacf0a8b0d9%' select 阅读全文
posted @ 2019-12-02 09:16 yjanb11 阅读(160) 评论(0) 推荐(0) 编辑

2019年11月27日

摘要: 必须添加对程序集“System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”的引用。请检查下bin目录下有没有System.Data.Entity.dll Svn不上传bin目录. 所以 阅读全文
posted @ 2019-11-27 10:55 yjanb11 阅读(119) 评论(0) 推荐(0) 编辑

摘要: Microsoft Report Viewer Redistributable 2008 https://www.microsoft.com/en-us/download/details.aspx?id=6576 Microsoft Report Viewer Redistributable 200 阅读全文
posted @ 2019-11-27 10:49 yjanb11 阅读(38) 评论(0) 推荐(0) 编辑

2019年11月26日

摘要: 阅读全文
posted @ 2019-11-26 14:36 yjanb11 阅读(84) 评论(0) 推荐(0) 编辑

2019年11月25日

摘要: 1、VSCODE中安装ESlint省略 2、菜单文件->首选项->设置->扩展->ESLint 打钩:Eslint:Auto Fix On Save 点击此链接:在settings.json中编辑 "eslint.autoFixOnSave": true 在此后面粘进去以下代码,即可。 阅读全文
posted @ 2019-11-25 13:43 yjanb11 阅读(135) 评论(0) 推荐(0) 编辑

摘要: 一、 问题日志 二、 问题原因在vue新版本中,v-for迭代语法有变动,需要加入key值。 三、 解决方案 后面加上key值定义,注意有个空格 四、 参考文献require v-bind:key with v-for directives (vue/require-v-for-key)‘v-for 阅读全文
posted @ 2019-11-25 13:41 yjanb11 阅读(162) 评论(0) 推荐(0) 编辑