怎么用flex访问Struts的Action

public function toSendServer(parameters:Object, fun:Function):void{
	var hs:HTTPService = new HTTPService();
	hs.showBusyCursor = true;
	hs.resultFormat = "e4x";
	hs.requestTimeout = 60;
	hs.method = "POST";
	var urlv:URLVariables = parameters.pamr as URLVariables;
	hs.url = parameters.url;
	if(parameters.pamr != null){
	hs.send(urlv);
	}else {
	  hs.send();
	}
        fun.call();
}


第一个参数是要传的参数

第二个参数是回调函数的名称

这里Action返回的是xml格式的数据

URLVariables就是键值对,key=value的形式 

比如 id=1&name=zhangsan&age=21 这样的在服务器端,

就跟jsp的form一样的取值就可以了


parameters.url

就是要访问的url

你可能感兴趣的:(function,struts,object,Flex,action,Parameters)