简体   繁体   English

提交后是否保留表格数据?

[英]Is form data retained after submitting?

I know practically nothing about Javascript, apologies! 我对Java语言,道歉几乎一无所知!

But maybe you can help: I just stumbled upon this website, which "parses" code from Amazon purchases into a neat table that can then easily be copied for other purposes. 但是也许您可以提供帮助:我偶然发现了这个网站,该网站将来自亚马逊购买的代码“解析”到一个整洁的表中,然后可以轻松地将其复制以用于其他目的。

https://www.ardenstone.com/2015/01/11/exporting-kindle-books-from-amazon/ https://www.ardenstone.com/2015/01/11/exporting-kindle-books-from-amazon/

Before I go ahead and paste my whole amazon list though: Can it be ascertained somehow, whether this form is actually saved / sent / submitted somewhere? 在我继续粘贴整个亚马逊列表之前:是否可以通过某种方式确定此表单是否确实保存/发送/提交到某处? Or does it just deliver the results on this website for my eyes only? 还是只是将结果提供给我这个网站? I'd appreciate if somebody could help out! 如果有人可以帮忙,我将不胜感激! Thank you!!! 谢谢!!!

It starts like this: 它是这样开始的:

<form id="alp" name="alp" method="post" action="#" onsubmit="parseText(); return false;">
    <textarea cols="50" rows="10" id="alpIn"></textarea><br />
    <br />
    <input type="submit" id="alpSub" value="Parse" /><br />
    <br />
</form>

And parseText, after submitting, can be found here: https://www.ardenstone.com/projects/amazonkindle/amazonkindle.js 提交后的parseText可以在以下位置找到: https ://www.ardenstone.com/projects/amazonkindle/amazonkindle.js

Unless the software is properly published, you can never be sure. 除非软件已正确发布,否则您将无法确定。 The problem with a site like this is that he (the author) could make some unannounced change that turned it from something useful and benign into something potentially nasty. 像这样的网站存在的问题是,他(作者)可能会进行一些未经通知的更改,从而将其从有用的,良性的变为潜在的讨厌。

When I say "he", that actually means anyone who could modify the site content, currently or at some time in the future. 当我说“他”时,实际上是指可以在当前或将来某个时间修改站点内容的任何人。 Yes, it is an https link, but who controls the webserver, the domain name, etcetera. 是的,它是一个https链接,但由谁控制Web服务器,域名等。

If you are seriously concerned about your privacy, then don't use this site. 如果您严重担心自己的隐私,请不要使用此网站。 By all means: 一定要:

  • get hold of a copy of the code, 掌握代码副本,
  • analyze it, 分析一下
  • install it on your own (secure, private) platform for your own use. 将其安装在您自己的(安全,私有)平台上以供自己使用。

But if you use the form on the public site where it is currently is, you are putting your own privacy at risk. 但是,如果您在当前所在的公共网站上使用该表格,则会使您自己的隐私受到威胁。


(On the other hand, the kind of organizations that might be interested in your Amazon purchase history probably have better ways to find this out; eg https://en.wikipedia.org/wiki/National_security_letter ) (另一方面,可能对您的亚马逊购买历史感兴趣的组织可能有更好的方法来发现这一点;例如https://en.wikipedia.org/wiki/National_security_letter


For what it is worth, I cannot see any obvious problems with the current 1 version of the "amazonkindle.js" javascript. 对于它的价值,我看不到当前的“ amazonkindle.js” javascript 1版本有任何明显的问题。 However, there could be subtle sneaky things going on. 但是,可能会发生一些细微的偷偷摸摸的事情。 For example, it is conceivable that one of the other javascript blobs in the page alters the meaning of something, so that the innocent-looking code in "amazonkindle.js" does something unexpected. 例如,可以想象页面中的其他javascript blob之一会更改某些内容的含义,以使“ amazonkindle.js”中看上去纯真的代码会执行某些意外操作。

1 - that is, current as of when I looked at it! 1-也就是说,当我看着它时,它是最新的!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM