php的amf和flex通讯有关问题
程序员文章站
2024-02-13 12:04:46
...
php的amf和flex通讯问题
这个例子中,为什么flex 调用的时候 不按顺序就出错,就是说PHP中的差别就是
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
语句出现的顺序。
edit_GetMaterialType_sq.php
BaseAttribute.php
在flex中这样调用测试的
example.mxml
------解决方案--------------------
你的 BaseAttribute.php 文件中是一个类定义
重复加载是会出错的!
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
应放在外面,不能放在方法里
------解决方案--------------------
方法里会起冲突
这个例子中,为什么flex 调用的时候 不按顺序就出错,就是说PHP中的差别就是
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
语句出现的顺序。
edit_GetMaterialType_sq.php
class edit_GetMaterialType_sq
{
function IsLogin($isadmin)
{
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
$reLogin = array();
$reLogin[] = 'IsLogin($isadmin)';
return $reLogin;
}
function get_materialtype()
{
$g = array();
$g[] = 'materialtype()' ;
return $g;
}
function get_templatetype($templateid,$userid)
{
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
$p = array();
$p[] = 'get_templatetype' ;
return $p ;
}
}
?>
BaseAttribute.php
class BaseAttribute
{
var $Width = 0;
var $Height = 0 ;
}
?>
在flex中这样调用测试的
example.mxml
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:halo="library://ns.adobe.com/flex/halo"
xmlns:mx="library://ns.adobe.com/flex/mx"
applicationComplete="application1_applicationCompleteHandler(event)">source="edit_GetMaterialType_sq"> result="{IsLoginRemoteResultss(event)}"/> result="{IsLoginRemoteResult(event)}"/> result="{IsLoginRemoteResults(event)}"/>
------解决方案--------------------
你的 BaseAttribute.php 文件中是一个类定义
重复加载是会出错的!
require('D:/EmpireServer/ecshop/amfphp-2.1.1/Amfphp/Services/BaseAttribute.php');
应放在外面,不能放在方法里
------解决方案--------------------
方法里会起冲突
相关文章
相关视频