在 DoubleClick 服务器上运行时没有 JSON Feed
我有一个使用 JSON feed 的 Flash 广告。 Flash 文件托管在 DoubleClick Studio 中。 该调用在本地完美运行,但是当我将其上传到 DC Studio 时,加载 Event.COMPLETE 不会归档,也不会出现任何 IOErrors,这使我没有提要,也没有错误! 我尝试使用 DC 提供的 StudioLoader,它返回该文件是无法识别的格式。 DC 会不会根本不读取 JSON?
request.url = "myJSONFeed.json";
loader.load(request);
loader.addEventListener(Event.COMPLETE, decodeJSON);
loader.addEventListener(IOErrorEvent.IO_ERROR, ioError);
loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatus);
有什么想法吗?
I have a Flash Ad which makes use of a JSON feed. The Flash file is hosted within DoubleClick Studio.
The call works perfectly locally but when I upload it to DC Studio the load Event.COMPLETE does not file neither do any IOErrors which is leaving me with no feed and no errors!
I have tried making use of the StudioLoader which is supplied by DC which returns that the file is an unrecognised format. Would it be that DC just wont read JSON at all?
request.url = "myJSONFeed.json";
loader.load(request);
loader.addEventListener(Event.COMPLETE, decodeJSON);
loader.addEventListener(IOErrorEvent.IO_ERROR, ioError);
loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatus);
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将 loader.load(request); 放置在侦听器之后。也许它在设置侦听器之前触发了一些事件。
Try placing the
loader.load(request);
after the listeners. Maybe it's firing some events before the listeners are set.