WebAPI AJAX写法

2021-01-14 02:13

阅读:577

标签:char   span   写法   var   标题   har   api   OLE   ons   

1、

$(function () {
        var dataJSON = {Id:1,Title:‘标题测试‘};
        console.log(JSON.stringify(dataJSON));
        $.ajax({
            url: "http://localhost:53620/api/values",
            type: "Post",
            data: JSON.stringify(dataJSON),
            contentType: ‘application/json; charset=utf-8‘,
            dataType: ‘json‘,
            success: function () {

            }
        })
    })

2、

$.ajax({
            url: "http://localhost:53620/api/values",
            type: "Post",
            data: { Id: 1, Title: ‘标题测试‘ },
            success: function () {

            }
        })

 

WebAPI AJAX写法

标签:char   span   写法   var   标题   har   api   OLE   ons   

原文地址:https://www.cnblogs.com/superfeeling/p/12271593.html


评论


亲,登录后才可以留言!