最近在使用EasyUI DataGrid来做前端的报表开发,遇到了这个报错: 在网上查找解决方案,基本上都告诉你检查各种属性名是否有拼写的错误,一般都是这个原因导致的。我自己也做了检查,并没有发现什么问题,以下是我的代码: 查找了很多的解决办法,依然没找出问题所在,后面自己想着有没有可能是colsp ...
分类:
其他好文 时间:
2019-12-03 01:52:07
阅读次数:
207
[toc] django与ajax的分页处理 ajax + sweetAlert 实现再次确认: 下载插件 : https://github.com/lipis/bootstrap sweetalert 二次确认的动态样式: 批量数据插入 分页: ...
分类:
Web程序 时间:
2019-12-02 23:09:38
阅读次数:
166
目标 : 将如下数据表中的数据提供接口查询出来 。 表名 : examples 步骤 一、配置mybatis依赖jar包 ,mysql驱动jar包 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis- ...
分类:
数据库 时间:
2019-12-02 19:05:44
阅读次数:
96
mybatis 嵌套查询子查询column传多个参数如下: 2、代码示例 备注:注意,相同颜色的单词都是有关联的 <resultMap id="blogResult" type="Blog"> <association property="author" column="{id=author_id, ...
分类:
其他好文 时间:
2019-12-02 17:03:46
阅读次数:
107
You are given an integer array nums and you have to return a new counts array. The counts array has the property where counts[i] is the number of smal ...
分类:
其他好文 时间:
2019-12-02 00:44:27
阅读次数:
101
<configuration><property><name>javax.jdo.option.ConnectionURL</name><value>jdbc:mysql://master:3306/hive?createDatabaseIfNotExist=true</value></proper ...
分类:
其他好文 时间:
2019-12-01 20:35:16
阅读次数:
92
A模块和B模块都分别拥有自己的Spring XML配置,并分别拥有自己的配置文件: A模块 A模块的Spring配置文件如下: Xml代码 <?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springframework ...
分类:
编程语言 时间:
2019-12-01 18:40:56
阅读次数:
91
传送门 题意: 输入一个数n,求出n/i(i取任意)向下取整有几种数,并输出 思路: 整除分块裸题 for(int l=1,r;l<=n;l=r+1) { r=n/(n/l); a[++cnt]=n/l; } cnt代表分块的块的个数,每个块里的值为a[i]=n/l,l为块的左端点,r为块的右端点r ...
package com.moucong;import com.alibaba.fastjson.JSONObject;import java.io.*;import java.net.HttpURLConnection;import java.net.MalformedURLException;im ...
分类:
编程语言 时间:
2019-12-01 09:34:48
阅读次数:
151