mark
Posted yyznl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mark相关的知识,希望对你有一定的参考价值。
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));
}
})
以上是关于mark的主要内容,如果未能解决你的问题,请参考以下文章