divengine/ajaxmap
Composer 安装命令:
composer require divengine/ajaxmap
包简介
Div Ajax Mapping allow mapping PHP functions, static methods and arbitrary data when instance a JavaScript class
关键字:
README 文档
README
Mapping PHP data, functions and methods in JavaScript
An open source library for JavaScript and PHP, that allow mapping the PHP functions, static methods of classes and arbitrary data when instance a JavaScript class.
With this class you can call a functions and methods via AJAX.
For example:
Server side
<?php use divengine\ajaxmap; function sum($x, $y){ return $x + $y; } class Enterprise{ public static function getEmployees(){ return [ ["name" => "Thomas Hardy", "salary" => 1500], ["name" => "Christina Berglund", "salary" => 1200] ]; } } // Server instance ... $server = new ajaxmap(); // ... Add methods ... $server->addMethod("sum"); $server->addClass("Enterprise"); // ... and go! $server->go();
Client side
<script type = "text/javascript" src="server.php?lib"></script> <script type = "text/javascript"> var map = new ajaxmap("server.php"); var sum = map.sum(20, 10); var employees = map.Enterprise.getEmployees(); var firstEmployeeName = employees[0]['name']; </script>
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2021-11-13