跨域访问,需要服务端支持JSONP,JSONP使用JSON填充响应结果。jQuery中的ajax方法对JSONP有很好的支持,甚至无需特别声明,jQuery内部根据请求地址自动判断,如果是跨域的就启动JSONP,如果是本域就是常规的AJAX。但是正因为跨域请求的返回结果不是常规的JSON,所以不仅需要客户端有特殊的方法,服务端也需要对JSONP进行专门的支持:服务端需要知道下载完毕后的回调函数是什么,需要把执行回调函数的JavaScript语句写入到响应流中。...
分类:
Web程序 时间:
2014-11-25 18:36:39
阅读次数:
142
void Application_BeginRequest(object sender, EventArgs e){if (HttpContext.Current.Request.Url.ToString().ToLower().Contains("http://domain.com")){// n...
分类:
其他好文 时间:
2014-11-25 18:22:54
阅读次数:
170
领域驱动设计是软件开发的一种方式,问题复杂的地方通过将具体实现和一个不断改进的核心业务概念的模型连接解决。这个概念是Eric Evans提出的,http://www.domaindrivendesign.org/这个网站来促进领域驱动设计的使用。关于领域驱动设计的定义,http://dddcommunity.org/resources/ddd_terms/,这个网站有很多的描述,DDD是一种软件开...
分类:
其他好文 时间:
2014-11-25 16:36:29
阅读次数:
152
写video 需要用到 VideoWriter 视频文件可看作一个容器 视频的类型由视频文件的后缀名来指定 Due to this OpenCV for video containers supports only the avi extension, its first version. A di...
分类:
其他好文 时间:
2014-11-24 22:25:43
阅读次数:
383
IntroductionFrom the biopython website their goal is to “make it as easy as possible to use Python for bioinformatics by creating high-quality, reusab...
分类:
编程语言 时间:
2014-11-24 22:19:46
阅读次数:
265
DNS(Domain Name System,域名系统),因特网上作为域名和IP地址相互映射的一个分布式数据库,能够使用户更方便的访问互联网,而不用去记住能够被机器直接读取的IP数串。通过主机名,最终得到该主机名对应的IP地址的过程叫做域名解析(或主机名解析)。DNS协议运行在UDP协议之上,使用端...
分类:
其他好文 时间:
2014-11-24 09:57:44
阅读次数:
143
套接字类型与协议设置 我们先了解一下创建套接字的那个函数 int socket(int domain,int type,int protocol);成功时返回文件描述符,失败时返回-1.其中,domain是套接字使用中的协议族(Protocol Family)信息。type套接字类型里面的数据传.....
分类:
其他好文 时间:
2014-11-23 22:57:12
阅读次数:
197
外接旋转矩形 ,或外接椭圆 RotatedRect minAreaRect(InputArray points) 返回面积最小的外接矩形 RotatedRect fitEllipse(InputArray points) The function calculates the ellipse tha...
分类:
其他好文 时间:
2014-11-23 21:33:27
阅读次数:
364
同样是提取出轮廓之后的处理 ~~ void approxPolyDP(InputArray curve, OutputArray approxCurve, double epsilon, bool closed) Parameters: curve – Input vector of a 2D po...
分类:
其他好文 时间:
2014-11-23 21:22:39
阅读次数:
302
ZooKeeper 秘诀 与解决方案A Guide to Creating Higher-level Constructs with ZooKeeperOut of the Box Applications: Name Service, Configuration, Group Membership...
分类:
其他好文 时间:
2014-11-23 18:52:51
阅读次数:
339