gpt4 book ai didi

actionscript-3 - 与 navigateToURL 发布方法有关的 as3 问题

转载 作者:行者123 更新时间:2023-12-04 18:23:30 27 4
gpt4 key购买 nike

我有一个包含 Flash 对象的页面。在特定操作上,页面需要重定向到其他页面并发送一些数据(变量)。我正在结合使用 urlvariables 和 navigateToURL 来执行此操作。页面重定向并发送数据(变量)。

但问题是数据(变量)是在查询字符串中发送的(我的意思是这样的“http://dummy.php/?first_name=xyz”)。我正在使用 post 方法发送数据(变量)。我无法像查询字符串一样发送数据(变量)。

如何解决这个问题?

PS:我已经在下面写了所有代码......

var request:URLRequest = new URLRequest("http://dummy.php");
var vars:URLVariables = new URLVariables();
vars.first_name = 'xyz';
request.data = vars;
request.method = URLRequestMethod.POST;
navigateToURL(request, "_blank");

最佳答案

我刚刚做了这个简单的测试,向 Twitter 的搜索 API 发送了一个 POST 请求(它似乎同时接受 GET 和 POST 请求)。正如您在随附的屏幕截图中看到的那样,浏览器的 URL 字段没有显示任何变量,而 Httpfox(您可以使用 Firebug、Chrome 的开发人员工具等)显示 POST 按预期传递的变量。您发布的示例代码是真正给您带来麻烦的代码吗?这是我使用的:

    // Create the POST request
var request:URLRequest = new URLRequest("http://search.twitter.com/search.json");
request.method = URLRequestMethod.POST;

// Create the variables object
var vars:URLVariables = new URLVariables();
vars.q = 'love';
vars.rpp = '5';
vars.include_entities = 'true';

// Attach variables to request object
request.data = vars;

// Open new window using the POST request
navigateToURL(request, "_blank");

Httpfox screenshot showing POST vars being passed as expected

关于actionscript-3 - 与 navigateToURL 发布方法有关的 as3 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10186494/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com