loadString(...) - 访问 JS 函数

发布于 2024-11-25 07:18:44 字数 173 浏览 1 评论 0原文

我正在使用 htmlLoader.loadString(someHtml) 加载网站。其中包含 JS 源。 是否有机会访问此 JS 文件内的函数?

我还将属性 placeLoadStringContentInApplicationSandbox 设置为 true。

I'm loading website by using htmlLoader.loadString(someHtml). There are included JS sources.
Is there any chance to get access to functions which are inside this JS file?

I also set property placeLoadStringContentInApplicationSandbox to true.

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

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

发布评论

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

评论(2

那一片橙海, 2024-12-02 07:18:44

问题是,如何访问 JS 函数 - showAlert()?在本例中,我使用 userDirectory 来存储文件。这两个文件 - txt(里面有 html 源代码)和 JS - 都在此目录 - /Users/unsername/ 中。希望现在一切都会清楚。感谢您的帮助。

private function init():void
        {
        var testFile:File = File.userDirectory.resolvePath("testreadonly.txt");

        var readFileStream:FileStream = new FileStream();
        readFileStream.open(testFile, FileMode.READ);
        var test:String = readFileStream.readMultiByte(testFile.size, File.systemCharset);

        var myJS:File = File.userDirectory.resolvePath("myJS.js");

        trace("my JS : " + myJS.exists);//it shows TRUE

        myHTML.htmlLoader.placeLoadStringContentInApplicationSandbox = true;
        myHTML.htmlLoader.loadString(test);
        }

我的 HMTL 文件来源:

<html><body><script type='text/javascript' src='myJS.js'></script><script type='text/javascript'>showAlert()</script>Pawel</body></html>

我的 JS 文件:

function showAlert()
{
    alert('alert');
}

Question is, how to get access to JS function - showAlert()? In this case I used userDirectory to store files. Both files - txt (which has html source inside) and JS - are in this directory - /Users/unsername/. Hope that now everything will be clear. Thanks for help.

private function init():void
        {
        var testFile:File = File.userDirectory.resolvePath("testreadonly.txt");

        var readFileStream:FileStream = new FileStream();
        readFileStream.open(testFile, FileMode.READ);
        var test:String = readFileStream.readMultiByte(testFile.size, File.systemCharset);

        var myJS:File = File.userDirectory.resolvePath("myJS.js");

        trace("my JS : " + myJS.exists);//it shows TRUE

        myHTML.htmlLoader.placeLoadStringContentInApplicationSandbox = true;
        myHTML.htmlLoader.loadString(test);
        }

My HMTL file source:

<html><body><script type='text/javascript' src='myJS.js'></script><script type='text/javascript'>showAlert()</script>Pawel</body></html>

My JS file:

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