ActionScript 3 中的 URLLoader 在某些机器上不使用相同的 Web 会话?
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("http://domain.net/registerVideo.php");
var vars:URLVariables = new URLVariables();
vars.action = "insert";
vars.record = publishMode;
vars.name = streamName;
request.data = vars;
request.method = URLRequestMethod.POST;
loader.load(request);
上面的客户端代码适用于我的机器(使用相同的网络会话),
但不适用于其他一些机器。
这是一个已知的错误吗?
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("http://domain.net/registerVideo.php");
var vars:URLVariables = new URLVariables();
vars.action = "insert";
vars.record = publishMode;
vars.name = streamName;
request.data = vars;
request.method = URLRequestMethod.POST;
loader.load(request);
The above client side code works for my machine(using the same web session),
but not working for some other machines.
Is this a known bug??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是,您正在从domain.net 机器上测试它,但从其他地方加载。如果它无法在另一台计算机上工作,则可能存在安全沙箱违规。尝试在您的服务器上添加一个 crossdomain.xml 文件,其中包含类似的内容,看看是否可以解决您的问题。
如果它解决了您的问题,我不建议将其保留在生产中。有关详细信息,请参阅此链接。
My guess is that you are testing this from the domain.net machine but loading from somewhere else. If it is not working from another machine, you may have a security sandbox violation. Try to add a crossdomain.xml file on your server with something like this to see if that fixes your issue.
I wouldn't advise keeping this for production if it fixes your issue. For more info, see this link.