EUReCa : Easy, Unobstructive Remote Call

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-14 05:58:29

软件介绍

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);  


Click here to download!

本文地址:https://codercto.com/soft/d/23332.html

JavaScript设计模式

JavaScript设计模式

Ross Harmes、Dustin Diaz / 谢廷晟 / 人民邮电出版社 / 2008 / 45.00元

本书共有两部分。第一部分给出了实现具体设计模式所需要的面向对象特性的基础知识,主要包括接口、封装和信息隐藏、继承、单体模式等内容。第二部分则专注于各种具体的设计模式及其在JavaScript语言中的应用,主要介绍了工厂模式、桥接模式、组合模式、门面模式等几种常见的模式。为了让每一章中的示例都尽可能地贴近实际应用,书中同时列举了一些JavaScript 程序员最常见的任务,然后运用设计模式使其解决方......一起来看看 《JavaScript设计模式》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具