

<script>
//$.get("https://localhost:44352/api/values", function (data) {
// alert(data);
//})
//$.get("https://localhost:44352/api/GetMvc/145", { id: 123 }, function (data) {
// alert(data);
//})
//$.post("https://localhost:44352/api/GetMvc", { msg: "6dfsf4dd56f45",pwd:"5s8d" }, function (data) {
// alert(data);
//})
$.ajax({
method: 'Post',
url: 'https://localhost:44352/api/GetMvc',
// data: par,
//dataType: "json",
contentType: 'application/x-www-form-urlencoded',
success: function (data) {
alert(data.errorMsg);
},
error: function (data) {
console.log("数据请求失败");
}
});
</script>
