Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本字段,我想在其中支持任意数量的文本。现在,文本是通过使用 GET 的 XML 对象请求发送的。我想使用 POST 将数据发送回服务器。ActionScript 1 中有什么好的选择吗?
您想使用 LoadVars 对象并将值分配给您创建的键,以便:
obj.id=myId; obj.status = myStatusId;
obj.sendAndLoad(url, responseVarThatYouSetupToHandleOnLoadEvent, "POST");