在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → jquery 调用wcf 实例源码下载

jquery 调用wcf 实例源码下载

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.63M
  • 下载次数:24
  • 浏览次数:161
  • 发布时间:2016-01-27
  • 实例类别:C#语言基础
  • 发 布 人:crazycode
  • 文件格式:.rar
  • 所需积分:2
 相关标签: jQuery WCF

实例介绍

【实例简介】
【实例截图】

【核心代码】

jquery代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="Scripts/jquery-1.7.2.min.js" type="text/javascript">
    </script>
</head>
<body>
   <script type="text/javascript">
       var url="http://localhost:21129/Service1/";
       $(function () {
           //以GET方式调用Service1的GetCollection方法,返回的是集合类型
           /*最小要求:
                       (1)GET方法
                       (2)地址直接就是域名/Service1/
                       (3)无正文
                       (4)报头必须有:Content-Type: application/json;charset=utf-8
           */
                      $.ajax({
                          type: "GET",
                          url: url,
                          contentType: "application/json;charset=utf-8",
                          dataType: "json",
                          cache: false,
                          success: function (res) { alert(res[0].StringValue); }
                      });
           //以GET方式调用Service1的Get方法
           /*最小要求:
                      (1)GET方法
                      (2)地址直接就是域名/Service1/{id}
                      (3)无正文
                      (4)报头必须有:Content-Type: application/json;charset=utf-8
                      */
                      $.ajax({
                          type: "GET",
                          url: url   "1", //1代表参数id
                          contentType: "application/json;charset=utf-8",
                          dataType: "json",
                          cache: false,
                          success: function (res) { alert(res.Id "," res.StringValue); }
                      });
                      

           //以POST方式调用Service1的Get方法
           /*最小要求:
           (1)POST方法
           (2)地址直接就是域名/Service1/
           (3)正文格式,使用要传递对象构建各属性值
           (4)报头必须有:Content-Type: application/json;charset=utf-8
           */
           $.ajax({
               type: "POST",
               url: url,
               contentType: "application/json;charset=utf-8",
               dataType: "json",
               cache: false,
               data: '{"Id":11,"StringValue":"创建新对象"}',
               success: function (res) { alert(res.Id   ","   res.StringValue); }
           });
           

           //以PUT方式调用Service1的Update方法
           /*最小要求:
           (1)PUT方法
           (2)地址直接就是域名/Service1/1
           (3)正文格式,使用要传递对象构建各属性值
           (4)报头必须有:Content-Type: application/json;charset=utf-8
           */
           $.ajax({
               type: "PUT",
               url: url "1", //1代表参数id
               contentType: "application/json;charset=utf-8",
               dataType: "json",
               cache: false,
               data: '{"Id":1,"StringValue":"创建新对象"}',
               success: function (res) { alert(res.Id   ","   res.StringValue); }
           });

           //以DELTE方式调用Service1的Delete方法
           /*最小要求:
           (1)DELETE方法
           (2)地址直接就是域名/Service1/{id}
           (3)正文格式,使用要传递对象构建各属性值
           (4)报头必须有:Content-Type: application/json;charset=utf-8
           */
           $.ajax({
               type: "DELETE",
               url: url   "1", //1代表参数id
               contentType: "application/json;charset=utf-8",
               dataType: "json",
               cache: false,
               success: function (res) { alert(res.StringValue); }
           });

       });
   </script>
</body>
</html>

server核心:

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using System.Text;

namespace WcfRestService4
{
    // Start the service and browse to http://<machine_name>:<port>/Service1/help to view the service's generated help page
    // NOTE: By default, a new instance of the service is created for each call; change the InstanceContextMode to Single if you want
    // a single instance of the service to process all calls.	
    [ServiceContract]
    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
    [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
    [JavascriptCallbackBehavior(UrlParameterName="jsoncallback")]
    // NOTE: If the service is renamed, remember to update the global.asax.cs file
    public class Service1
    {
        // TODO: Implement the collection resource that will contain the SampleItem instances

        [WebGet(UriTemplate = "")]
        public List<SampleItem> GetCollection()
        {
            // TODO: Replace the current implementation to return a collection of SampleItem instances
            return new List<SampleItem>() { new SampleItem() { Id = 1, StringValue = "Hello" } };
        }

        [WebInvoke(UriTemplate = "", Method = "POST")]
        public SampleItem Create(SampleItem instance)
        {
            // TODO: Add the new instance of SampleItem to the collection
            instance.StringValue  = ",huangbo";
            return instance;
        }

        [WebGet(UriTemplate = "{id}")]
        public SampleItem Get(string id)
        {
            // TODO: Return the instance of SampleItem with the given id
            return new SampleItem
            {
                Id=Convert.ToInt32(id),
                StringValue="已被获取"   
            };
        }

        [WebInvoke(UriTemplate = "{id}", Method = "PUT")]
        public SampleItem Update(string id, SampleItem instance)
        {
            // TODO: Update the given instance of SampleItem in the collection
            return new SampleItem
            {
                Id = Convert.ToInt32(id),
                StringValue = id "已被更新"
            };
        }

        [WebInvoke(UriTemplate = "{id}", Method = "DELETE")]
        public SampleItem Delete(string id)
        {
            // TODO: Remove the instance of SampleItem with the given id from the collection
            return new SampleItem
            {
                Id = Convert.ToInt32(id),
                StringValue = id "已被删除"
            };
        }

    }
}

标签: jQuery WCF

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警