标签:local 响应 null ext code enc fun -name location
spring:
datasource:
url: jdbc:mysql://localhost:3306/lovers?serverTimezone=UTC
#jdbc:mysql://localhost:3306/lovers?useUnicode=true&characterEncoding=utf8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&serverTimezone=UT
password: 123456
username: root
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
mapper-locations: classpath:/mapper/**/*.xml
$.ajax({
url: ‘http://localhost:8080/test/selectInfo‘,
type: ‘get‘,
// 设置的是请求参数
data: "",
// 用于设置响应体的类型 注意 跟 data 参数没关系!!!
dataType: ‘json‘,
success: function (res) {
// 一旦设置的 dataType 选项,就不再关心 服务端 响应的 Content-Type 了
// 客户端会主观认为服务端返回的就是 JSON 格式的字符串
$("#info").text(JSON.stringify(res));
}
})
标签:local 响应 null ext code enc fun -name location
原文地址:https://www.cnblogs.com/yyZNL/p/12945775.html