在PHP中使用ASP.NET AJAX
编写Service文件
新建一个php文件,命名为EmployeeService.php。首先写上这一句,include必要的支持代码:
require_once 'MSAjaxService.php';
然后定义一个Employee类。四个属性一目了然,不用多说:
class Employee
{
public $Id;
public $Name;
public $Email;
public $Salary;
function __construct($id, $name, $email, $salary)
{
$this->Id = $id;
$this->Name = $name;
$this->Email = $email;
$this->Salary= $salary;
}
}
接下来是EmployeeService类,继承与MSAjaxService.php中的MSAjaxService基类。其中定义一个方法,用来返回一个Employee对象:
class EmployeeService extends MSAjaxService
{
function GetEmployee()
{
return new Employee(12345, "Dflying Chen", "Dflying@some.com", 1000);
}
}
然后新建一个EmployeeService的实例,并且调用基类的ProcessRequest()方法,处理该请求:
$theService = new EmployeeService();
$theService->ProcessRequest();
推荐阅读
-
PHP中COOKIES使用示例
-
在JS中操作时间之getUTCMilliseconds()方法的使用
-
在JavaScript中操作时间之getUTCDate()方法的使用
-
在JavaScript中处理时间之setMinutes()方法的使用
-
在.NET2.0中使用自定义事务操作
-
Spinner在Dialog中的使用效果实例代码详解
-
在JavaScript中操作时间之getYear()方法的使用教程
-
asp.net使用FCK编辑器中的分页符实现长文章分页功能
-
在HTML5中使用MathML数学公式的简单讲解
-
实测在class的function中include的文件中非php的global全局环境