Storing persistent data in browser

前端 未结 5 1609
[愿得一人]
[愿得一人] 2020-12-11 23:05

For my web application, I need to store form inputs spanning across multiple pages, until I finally process/manipulate them to produce some results (its mostly formatting th

5条回答
  •  醉梦人生
    2020-12-11 23:43

    I would suggest storing the data in a session variable until you get to the final step rather than a cookie. I think this would be safer for your data as the user does not have direct access to the data, so you can validate as you go.

提交回复
热议问题