How can Vue.js store the user information of the comment list if it is a forum?

Forum-related websites cannot see the data requested by the interface in the browser for the confidentiality of user information

how can we ensure that the information of these comment users is not exposed if it is developed in vue?

after all, what should a user do if he can reply that another user will inevitably get an ID or something to request?

May.11,2022

give a relationship table to forum + users.... huh?
or user nickname unique?
do you have such a rich development cycle? come up with such a coquettish demand.
Let's talk about the transmission process:

all requests made by browsers are made on behalf of the user, and the user is naturally entitled to see them. Use https if you don't want a third party to see it.
if you don't want users to grab packets at all, you can use symmetric encryption + asymmetric double encryption to transmit data. In this way, the packet that the user sees from the browser is either binary or base64 and other data that is easy to transmit and does not understand. But this is still useless, after all, you have to decrypt the data locally. The decryption algorithm still has to be put locally.


should be the time to reply and get the ID of the comment? The background then finds the replied user according to the replied comments? It's just a guess. I haven't done any similar business

Menu