标签:判断 语言 tps 出现 处理 参数 利用 https log
什么是AJAX?发现ajax在传递日期参数的时候,javascript已经默认的额toString()方法转为字符转格式了;
经过查阅资料发现:
ajax发送的请求参数和接收服务器端返回的数据都是文本数据,ajax不支持二进制数据传输,所以会调用toStirng()方法把参数转为字符串。
ajax的post和get的数据都是以文本方式传输,无论是客户端提交的数据还是服务器端返回的数据;
ajax传递日期类型的参数,传递的是日期类型的字符串,在后端代码中需要操作,将字符串转为日期类型;
接下来问题又出现了
:
当我按住日期参数查询数据库的时候,报错:
invalid comparison: java.util.Date and java.lang.String
感谢: https://www.cnblogs.com/dflmg/p/6641168.html
具体的原因是因为:我在mybatis.xml文件做查询的时候,日期类型不能判断是否为null
报错的代码:
<select id="getIntegralCoefficientStockList" resultType="IntegralCoefficientStock" parameterType="IntegralCoefficientStock">
SELECT
coefficient_stock_id,
coefficient_stock,
create_time,
create_by,
stock_code
FROM integral_coefficient_stock
<where>
<if test="createTime!=null and createTime!=‘‘ ">
AND create_time = #{createTime}
</if>
<if test="stockCode!=null and stockCode!=‘‘ ">
AND stock_code like "%"#{stockCode}"%"
</if>
</where>
</select>
而正确的代码应该是这样的:
<select id="getIntegralCoefficientStockList" resultType="IntegralCoefficientStock" parameterType="IntegralCoefficientStock">
SELECT
coefficient_stock_id,
coefficient_stock,
create_time,
create_by,
stock_code
FROM integral_coefficient_stock
<where>
<if test="1">
AND create_time = #{createTime}
</if>
<if test="stockCode!=null and stockCode!=‘‘ ">
AND stock_code like "%"#{stockCode}"%"
</if>
</where>
</select>
标签:判断 语言 tps 出现 处理 参数 利用 https log
原文地址:http://blog.51cto.com/13955864/2178958