在 DoubleClick 服务器上运行时没有 JSON Feed

发布于 2025-01-08 00:23:12 字数 530 浏览 1 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

孤凫 2025-01-15 00:23:12

尝试将 loader.load(request); 放置在侦听器之后。也许它在设置侦听器之前触发了一些事件。

Try placing the loader.load(request); after the listeners. Maybe it's firing some events before the listeners are set.

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