小程序数据库访问问题

发布于 2024-10-25 13:26:27 字数 71 浏览 0 评论 0原文

我开发的小程序(连接到访问数据库)在小程序查看器中运行良好,但是当嵌入到 html 文件中时,它无法访问数据库。我该如何纠正它?

the applet(which make connection to access database) i developed is working fine in applet viewer, but when embedded in an html file, it cannot access the database. how can i rectify it?

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

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

发布评论

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

评论(2

海之角 2024-11-01 13:26:27

小程序位于安全沙箱中。为了让您执行文件 io,您的小程序 jar 需要进行签名。

http://introcs.cs.princeton.edu/85application/jar/sign.html

An applet lives in a security sandbox. In order for you to do file io, your applet jar(s) need to be signed.

http://introcs.cs.princeton.edu/85application/jar/sign.html

故人的歌 2024-11-01 13:26:27

小程序尊重同源政策。它无法连接到托管位置以外的任何其他服务器。您的数据库和网络服务器需要位于同一 IP 上。

Applets respect same origin policy. It cannot connect to any other sever other than where it is hosted. You database and your webserver needs to be on same ip.

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