javascript:在没有php的情况下将数据存储在文件或数据库中?

发布于 2024-11-03 07:20:11 字数 103 浏览 1 评论 0原文

我必须构建一个网络应用程序,一个有 5 个答案的简单调查,我想存储用户的选择(以便给出结果),但我不允许使用 mysql 或 php...是否可以只使用 jquery /javascript?

i have to build an webapp, a simple survey with 5 answers, and i want to store the users choices (so to give the results) but i'm not allowed to use mysql or php... is it possible to use just jquery/javascript?

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

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

发布评论

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

评论(4

番薯 2024-11-10 07:20:11

当你说“存储答案”时,以什么方式存储?您想存储它们以供第三方稍后检索吗?如果是这样,您需要某种类型的外部存储,无论是带有服务器端接口来存储它的自托管数据库(mysql)(php),还是为您做同样事情的第三方解决方案。

Javascript 本身是客户端的。这意味着,在缺乏支持技术的情况下,javascript 就像拉斯维加斯:客户端计算机上发生的事情只会保留在客户端计算机上。您可以使用 javascript 通过元素存储或 cookie 在本地存储数据,但为了稍后检索此数据,您必须使用其他一些技术。

When you say "store the answers", in what way? You want to store them for retrieval later by a third party? If so, you need some type of external storage, whether it is self-hosted database (mysql) with a server-side interface to store it (php), or a third-party solution that does the same thing for you.

Javascript itself is client-side. This means that, in the absence of supporting technologies, javascript is like Las Vegas: what happens on the client computer stays on the client computer. You can use javascript to store data locally via element storage or cookies, but in order to retrieve this data later, you'll have to use some other technology.

娇纵 2024-11-10 07:20:11

您可以将 Google Analytics(分析)的答案记录为转化事件。

You could record the answers to Google Analytics as conversion events.

叫嚣ゝ 2024-11-10 07:20:11

只要您只需要将数据提供给单个用户,您就有多种选择。最简单的是使用 cookie,但使用 html5 有一些更强大的选项可用。

As long as you only need the data to be available to the individual user, you have several options. The simplest is to use cookies, but with html5 there are some more powerful options available.

小鸟爱天空丶 2024-11-10 07:20:11

这是 ja 之前发布的:
是的,这是可能的。

该技术描述如下

http://jquery.tiddlywiki.org/twFile.html

This was posted previously by ja:
Yes it is possible.

The technique is described below

http://jquery.tiddlywiki.org/twFile.html

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