我想从flex端向servlet发送值(示例中为_sectionName),但是我无法将数据从flex端发送到servlet。解决方案是什么?
var url:String="http://localhost:8080/xyz/UploadServlet";
var request:URLRequest=new URLRequest(url);
request.method=URLRequestMethod.POST;
var variables:URLVariables=new URLVariables();
variables.sectionName=_sectionName;
variables.reviewType=_sectionName;
request.data= variables;
_fileRef.upload(request);