• Ajax Agent


    Ajax Agent是一个非常易于使用(只需三行代码),并且非常强大的开源框架用于快速构建AJAX或RIA应用程序。支持复杂的数据类型比如:associated arrays与object。使用JSON(JavaScript Object Notation)作为数据交换格式。

    Hello Developers,

    Ajax Agent is a very easy to use, yet very powerful open source framework for rapidly building Ajax or Rich Internet Applications (RIA). For the PHP version, it takes only three lines of code to invoke a remote scripting call. Remote scripting is an integral part of Ajax. Check the following code (for PHP version).

    include_once('agent.php');
    $agent->init();
    agent.call('url','server_function', 'client_handle', param1, param2, ...);


    The first line is declared to include the Ajax Agent library, initialize the agent framework & instantiate the server side 'Agent'. The second line instantiates the client side 'Agent'. The third line which runs on the client side within the JavaScript browser environment, uses the client side 'Agent' to directly call the server function asynchronously. Ajax Agent supports complex data types like associative arrays & objects. It makes use of JSON (JavaScript Object Notation) for data interchange format to achieve this. Check this short documentation to learn how to use this framework.

    Check the FAQ section for more info. If you have questions not addressed in the FAQ, please post them in the Forum section so that we can answer them.

    Check out some cool demos in the Cool Demos section to see what can be done using the Ajax Agent framework. You are encouraged to register so that you can be notified of updates in demos & features.

    Ajax Agent is an evolving UI framework with a newly defined software pattern called 'Agent' which encapsulates the browser specific 'bells & whistles' and offers a potential for a persona for good user experience.

    The first public version (v 0.1) is available for download in the Downloads section. This download includes all the demos. It is open source and licensed under the GNU General Public License. You are encouraged to use for commercial as well as non commercial use. You are required to keep the licensing comments within the JavaScript code. We are not looking for any financial donation but if you wish to participate or contribute your time, please contact us.

    点击次数   官方主页【官方主页】   下载地址【下载地址】

    网友留言/评论

    我要留言/评论

    相关开源项目

    jsLINB:jsLINB是一个完全的浏览器端javascript解决方案,兼容大部分现代浏览器 (IE6.0/IE7.0/firefox1.5 /firefox2.0/opera9/Safari2.0,Safari 缺乏测试)。
    PHP文本数据库 txtSQL:TXTSQL是一种文本数据库,文件存储方式类似mysql,兼容部分sql语句.PHP需4.0以上版本才能运行。还提供一个txtSQLAdmin工具来管理数据库。
    jQPie:支持XML,HTML和JSON handler
    PHP-Ext:PHP-Ext是一个封装Ext JS Javascript控件的开源项目。它提供一套标准、强大的PHP4和PHP5 API来开发胖客户端程序。此外PHP-Ext还拥有一个Javascript helper工具用于简化Javascript的使用和代码生成。
    phpmsajax:一组PHP文件用来支持在PHP Web应用程序中使用Microsoft AJAX Library。
    NanoAjax:NanoAjax是一个基于PHP5,面向对象(包括JavaScript和PHP)的AJAX框架。它使用JSON作为数据交换格式。NanoAjax能够把多个虚拟请求归结到一个正真的请求当中。整个框架非常小,并且易于使用。基于class的服务器端事件处理方式。
    phpAjaxTags:phpAjaxTags是模仿著名Java标签库"AjaxTags"的一个PHP标记库。简单但强大,易于使用与安装。不需要编写js代码就能实现ajax功能。
    AJASON:AJASON是一个基于PHP5的AJAX开发包。它具有以下特点: 1.PHP5与JavaScript代码完全采用面向对象开发。 2.从JavaScript异步调用PHP函数与对象方法。 3.能够在服务器与客户端之间交换复杂的数据类型像arrays与object (更确切地说是对象属性)。 4.使用JavaScript回调函数来处理服务端响应。 5.能够在客户端处理服务端的AJASON错误。
    PHPLiveX:PHPLiveX是一个PHP类库可用于在web页面中使用Ajax调用PHP函数。它非常易于使用,在调用一个PHP函数不需要附加额外的功能,包含一个灵活地预加载属性,兼容IE, Opera, Mozilla, Firefox等浏览器。
    AjaxAC:AjaxAC是一个PHP框架可用于开发/创建/生成AJAX应用程序。 特点如下: 1.所有应用程序代码全都包含在一个单独的class中(可以附带任何JavaScript包)。 2.PHP文件/HTML页面的调用非常简洁。 3.内置简化处理JavaScript事件的功能 4.内置创建和处理subrequest的功能。 5.可以自定义配置值,所以某些元素可以在运行期才被设置。 6.没有杂乱的Javascript代码塞满所调用的Html代码,所有事件都是被动态附加上的。 7.易于与模板引擎相集成基于以上两点原因。 8.易于挂钩(hook)现有的PHP classe或MySQL数据库以便从subrequest返回数据。