as2 - 表单帖子

发布于 2024-12-04 13:24:38 字数 149 浏览 1 评论 0原文

是否可以在 as2 中将一些变量 POST 到新的浏览器窗口(例如 _blank)?我似乎无法通过谷歌找到任何例子。

显然对于 GET 我可以使用 getURL(url,target) 但我找不到任何类似的 post 函数。

有人能指出我正确的方向吗?

Is it possible to POST a few variables to a new browser window (_blank for example) in as2? I can't seem to find any examples via Google.

Obviously for GET I could use getURL(url,target) but I can't find any similar functions for post.

Can someone point me in the right direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时模样 2024-12-11 13:24:38

使用 LoadVars.send 方法。

public send(url: String, target: String, [method: String]) : Boolean

参数

url:String - 字符串;将变量上传到的 URL。

目标:String - 字符串;浏览器窗口或框架中的任何
将出现响应。您可以输入特定窗口的名称或
从以下保留目标名称中选择:

“_self”指定当前窗口中的当前帧。 “_空白的”
指定一个新窗口。 “_parent”指定当前的父级
框架。 “_top”指定当前窗口中的顶级框架。

方法:字符串[可选] - 字符串;的 GET 或 POST 方法
HTTP 协议。默认值为 POST。

Use LoadVars.send method.

public send(url: String, target: String, [method: String]) : Boolean

Parameters

url: String - A string; the URL to which to upload variables.

target: String - A string; the browser window or frame in which any
response will appear. You can enter the name of a specific window or
select from the following reserved target names:

"_self" specifies the current frame in the current window. "_blank"
specifies a new window. "_parent" specifies the parent of the current
frame. "_top" specifies the top-level frame in the current window.

method: String [optional] - A string; the GET or POST method of the
HTTP protocol. The default value is POST.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文