使用 AS3.0 的外部 XML

发布于 2024-09-04 18:08:27 字数 1436 浏览 4 评论 0原文

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

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

发布评论

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

评论(1

谁对谁错谁最难过 2024-09-11 18:08:27

如果您尝试将自己的博客链接到“只是我在网络上偶然看到的一个博客”,那么您至少应该做的是确保博客名称和您的屏幕名称在 SO 中是不同的。

也就是说,那里的代码没有侦听 io-error 和 security-error,URLLoader 在无法定位 URL 和由于违反安全域而无法访问 URL 时分别抛出这些错误和安全错误。如果您不处理这些事件,Flash 播放器将抛出未处理的错误,您甚至可能不知道这一点,除非您正在使用 Flash 播放器的调试版本。

xmlob.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
xmlob.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
function securityErrorHandler(e:SecurityErrorEvent):void
{
  trace("security error occurred:\n" + e);
}
function ioErrorHandler(e:IOErrorEvent):void
{
  trace("io error occurred:\n" + e);
}

If you're trying to link to your own blog as "just a blog I happened to see on the web", the bare minimum you should do is to make sure that blog name and your screen-name in SO are different.

That said, the code over there is not listening for io-error and security-error which a URLLoader throws when it fails to locate the URL and when the URL isn't accessible due to security domain violations respectively. If you don't handle those events, Flash player will throw unhandled error and you might not even know that unless you're working on debug version of Flash player.

xmlob.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
xmlob.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
function securityErrorHandler(e:SecurityErrorEvent):void
{
  trace("security error occurred:\n" + e);
}
function ioErrorHandler(e:IOErrorEvent):void
{
  trace("io error occurred:\n" + e);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文