EUReCa : Easy, Unobstructive Remote Call
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/EUReCa
软件介绍
EUReCa is library that allows to call server side function (php, .Net ...etc) as javascript ones.
the first alpha release implements a php only version and shows a preview of some features.
a PHP and .Net callers will be maintained, other languages (python, ruby, ...etc) can be supported later.
the idea is simple
you keep your server side functions unchanged
<?php
function foo($stringVar, $intVar)
{
Do_Some_Server_Side_processing($stringVar);
Process_int_var($intVar);
return more_processing();
}
?>you declare witch functions you want to export (see the demo for details)
then you call your function from javascrpt
var eurecaObj = $.EUReCa({target : '#target'});
eurecaObj.foo('mystring', 55); JavaScript设计模式
Ross Harmes、Dustin Diaz / 谢廷晟 / 人民邮电出版社 / 2008 / 45.00元
本书共有两部分。第一部分给出了实现具体设计模式所需要的面向对象特性的基础知识,主要包括接口、封装和信息隐藏、继承、单体模式等内容。第二部分则专注于各种具体的设计模式及其在JavaScript语言中的应用,主要介绍了工厂模式、桥接模式、组合模式、门面模式等几种常见的模式。为了让每一章中的示例都尽可能地贴近实际应用,书中同时列举了一些JavaScript 程序员最常见的任务,然后运用设计模式使其解决方......一起来看看 《JavaScript设计模式》 这本书的介绍吧!
