How can i obfuscate or make unreadable my JavaScript files?

后端 未结 3 1992
名媛妹妹
名媛妹妹 2021-02-01 07:47

I have JavaScript scripts in my application containing JavaScript and jQuery functions. All user interaction with my application is dynamic and it\'s passing to the application

3条回答
  •  不知归路
    2021-02-01 08:02

    Everything ThiefMaster says is true. It's also worth noting that your apps should be designed with the assumption users can see and manipulate everything on the client. If you're worried about obfuscation because you think it will prevent users from seeing sensitive data or manipulating information such as prices, then you need to redesign your application so that secure logic resides on the server.

提交回复
热议问题