QT 和 QwebKit 我可以加载 javascript 文件作为资源文件并使用它吗?
我想知道我是否可以加载 Javascript 作为资源文件以在 QwebKit 中使用? 好吧,它不一定是资源文件,我只是在寻找一种方法 将 JS 文件嵌入到我的应用程序中。
I wonder if I can load Javascript as a resource file to use in QwebKit?
Well, it doesn't have to be resource file, I am just looking for a method
to embed JS files into my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。我在我的应用程序中执行此操作。例如:
其中 readFile 是将文件内容读取到字符串的函数。例如:
由于文件名以:开头,因此从资源文件中读取。显然,资源文件必须定义 /scripts/foo.js 。
Yes, you can. I do this in my app. For example:
Where readFile is a function which reads the contents of a file to a string. For example:
Since the filename starts with :, it is read from the resource file. The resource file must have /scripts/foo.js defined, obviously.