为什么这个调用会像这样显示编码到 URL 上的值?
http://localhost:49597/api/auth?user=jon&password=123
我正在使用以下 ajax 调用...
$.ajax({ url: "api/auth",
type: "get",
data: { user: "jon", password: "123" },
dataType: "json",
contentType: "application/json; charset=utf-8"
});
我希望数据以 json 格式发送...