How effectively can I use angularjs keeping security in mind?

后端 未结 3 1486
醉梦人生
醉梦人生 2021-01-26 11:22

Why should I use angular.js or other like js frameworks when I know they are not secured.

What I mean by security is:

  • All the code is written in pure javas
3条回答
  •  悲哀的现实
    2021-01-26 11:52

    Of course you should use minification js tool for your client side code if you worried about its logic. But keep in ming this:

    • Do not keep service info (like many id`s and etc.) on client
    • And always use both type of validation in dangerous places
    • Use crypto/tokens

提交回复
热议问题