WCF与ExtJs实现项目的实例分析

发布时间:2021-11-24 09:43:39 作者:柒染
来源:亿速云 阅读:139

今天就跟大家聊聊有关WCF与ExtJs实现项目的实例分析,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

当我在写过用Restful方式调用WCF进行上传下载后,愕然发现原来WCF支持原生数据(Raw)的返回,这就解决了ExtJs与Wcf之间进行跨域调用中的难题:返回数据必须满足<script>格式。下面根据WCF与ExtJs之间的跨域访问中实现的项目,通过Stream和ContentType的联合使用,返回原生数据给Extjs,从而实现跨域调用。

***步:在PageGridService.svc后台代码中,添加操作契约GetProductsByPageCorssDomain,代码为:

[OperationContract]  [WebInvoke(Method = "*", ResponseFormat = WebMessageFormat.Json,  UriTemplate = "GetProductsByPageCorssDomain?start={start}&limit={limit}&callback={callback}")]  public Stream GetProductsByPageCorssDomain(int start, int limit,string callback)  {  ProductsDataContext productDbContext = new ProductsDataContext();  IQueryable<Product> res = productDbContext.Product.Select(product => product);  PageData<Product[]> returnData = new PageData<Product[]>();  returnData.TotolRecord = res.ToArray<Product>().Length;  resres = res.Skip<Product>(start);  resres = res.Take<Product>(limit);  returnData.Data = res.ToArray<Product>();  System.Runtime.Serialization.Json.DataContractJsonSerializer formater = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(PageData<Product[]>));  MemoryStream ms = new MemoryStream();  formater.WriteObject(ms, returnData);  ms.Position = 0;  StreamReader sr = new StreamReader(ms);  string objContent = sr.ReadToEnd();  string returnStr = callback+"("+objContent+")";  sr.Close();  ms = new MemoryStream();  StreamWriter sw = new StreamWriter(ms);  sw.AutoFlush = true;  sw.Write(returnStr);  ms.Position = 0;  WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";  return ms;  }

第二步:在项目中创建一个新的htm页面:PageGridCorssDomainWithRow.htm,代码为:

<!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>ExtJs+WCF+LINQ打造分页Grid</title> <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" /> <script type="text/javascript" src="adapter/ext/ext-base.js" charset="gb2312"></script> <script type="text/javascript" src="ext-all-debug.js" charset="gb2312"></script> <link rel="stylesheet" type="text/css" href="shared/examples.css" /> <script type="text/javascript" src="shared/examples.js" charset="gb2312"></script> <script type="text/javascript" src="PageGridCrossDomainWithRow.js" charset="gb2312"></script> </head> <body> <h2> ExtJs+WCF+LINQ打造分页跨域Grid</h2> <div id="page-grid"> </div> </body> </html>

看完上述内容,你们对WCF与ExtJs实现项目的实例分析有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。

推荐阅读:
  1. WCF与Http(s)框架
  2. ExtJS表格示例

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

wcf extjs

上一篇:jquery如何改变元素对象的值

下一篇:c语言怎么实现含递归清场版扫雷游戏

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》