我想将值(示例中的_sectionName)从 flex 端发送到 servlet,但我无法将数据从 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);