using jquery ajax call wcf service   get/post/put/delete
http://www.codeproject.com/Articles/254714/Implement-CRUD-operations-using-RESTful-WCF-Servic
Using POST Method
Retrieve a representation of the addressed member of the collection, in the example below, create a new entry in the collection.
 Collapse | Copy Code 
 $.ajax({
         type: "POST",
         url: "Services/EFService.svc/Members/",
         data: "{Email:'test@test.com', ScreenName:'TestUser'}",
         contentType: "application/json; charset=utf-8",
         dataType: "json",
         success: function (data) { // Play with response returned in JSON format  },
         error: function (msg) {
             alert(msg);
        }
    });    Using PUT Method
Update the entire collection with another collection, in the example below, update the addressed member of the collection.
 Collapse | Copy Code 
$.ajax({
         type: "PUT",
         url: "Services/EFService.svc/Members/",
         data: "{Email:'test@test.com', ScreenName:'TestUser'}",
         contentType: "application/json; charset=utf-8",
         dataType: "json",
         success: function (data) { // Play with response returned in JSON format  },
         error: function (msg) {
             alert(msg);
         }
     });Using DELETE Method
Delete the entire collection or a specific collection, in the example below, delete Member with id=1.
 Collapse | Copy Code 
 $.ajax({
           type: "DELETE",
           url: "Services/EFService.svc/Members(1)",
           data: "{}",
           contentType: "application/json; charset=utf-8",
           dataType: "json",
           success: function (data) { // Play with response returned in JSON format  },
           error: function (msg) {
               alert(msg);
           }
       });
使用Jquery Aajx访问WCF服务(GET、POST、PUT、DELETE)

使用Jquery Aajx访问WCF服务(GET、POST、PUT、DELETE)

相关文章:

  • 2021-06-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-27
  • 2021-05-20
  • 2022-02-19
  • 2022-12-23
猜你喜欢
  • 2021-10-07
  • 2021-06-13
  • 2021-08-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2022-01-30
相关资源
相似解决方案