Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 javascript 的新手, 现在我可以使用 firebug 从浏览器编辑我的 javascript 代码。 任何想法,以检测或避免从客户端浏览器编辑的 javascript ??
你不能。
您可以(并且应该)使用服务器端代码来检查发送到服务器的任何数据是否正常,但您不能做任何事情来阻止人们发送他们喜欢的任何数据。
无法阻止人们在浏览器中修改您的 js,因为 js 是从服务器按原样发送的。
但是,您可以混淆您的 js,使其更难编辑。(另一个链接)