
Java
wlwlhh
bug?看不见看不见O(∩_∩)O
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jquery中将"2019-12-28T04:00:52.000+0000"字符串转化为yy-mm-dd格式
jquery中将"2019-12-28T04:00:52.000+0000"字符串转化为yy-mm-dd格式var time='2019-12-28T04:00:52.000+0000';var times = d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + ...原创 2019-12-28 09:25:19 · 416 阅读 · 0 评论 -
jquery添加ftl文件子元素大体样式
jquery添加ftl文件子元素大体样式 $('#carouselIndicators').append("<li data-target='#imageCarouselScene' image-id='" + recordImage.id + "' data-slide-to='" + i + "' class='active'>" ...原创 2019-12-28 09:16:20 · 429 阅读 · 0 评论 -
模态框中表单再次点开后数据在此显示,需要将表单中内容删除
模态框中表单再次点开后数据在此显示,需要将表单中内容删除在模态框关闭之前清空,jquery中方法:$('#createModal').on('hidden.bs.modal', function (event) { $('#createTenantId').empty(); //表单中下拉框设为空 createForm[0].reset(); //表单重置 ...原创 2019-12-28 09:10:21 · 517 阅读 · 0 评论 -
java.langIllegalStateException: Ambiguous mapping found. Cannot map 'outAppliController' bean method
java.lang.IllegalStateException: Ambiguous mapping found. Cannot map ‘outApplicationSheetController’ bean method两个@Controller注解类里有相同的@RequestMapping(value = "/work/outApplyList", method = RequestMet...原创 2019-12-19 08:33:26 · 134 阅读 · 0 评论 -
Parameter 'after_sale_record_id' not found. Available parameters are [afterSaleRecordId, param1]
:Parameter ‘after_sale_record_id’ not found. Available parameters are [afterSaleRecordId, param1]List<AfterSaleRecordEmployee> queryAfterSalesApplicationSheetById(@Param("afterSaleRecordId") L...原创 2019-12-12 17:50:59 · 204 阅读 · 0 评论 -
Wildcard string cannot be null or empty. Make sure permission strings are properly formatted.
java.lang.IllegalArgumentException: Wildcard string cannot be null or empty. Make sure permission strings are properly formatted.shiro权限没配置,注意查看权限限制部分,例如:加了@RequiresPermissions(""),貌似为空,但还是生效了,没有权限,所...原创 2019-12-12 17:36:36 · 329 阅读 · 0 评论 -
关于ftl文件中值判断是否为null
关于ftl文件中判断是否为null注意:detail.afterSaleRecord.reason为作者需要判断的值,??才是关键<#if (detail.afterSaleRecord.reason)??> </#if>原创 2019-12-09 16:47:14 · 2393 阅读 · 1 评论