IE8 transfers a large amount of data from page A to page B? At present, we know that the value passed by url is similar to that of cookie, but this involves encryption. Ie8 is not compatible. Is there any way to do it?

IE8 sends a lot of data from page A to page B? At present, we know that the value passed by url is similar to that of cookie, but this involves encryption. Ie8 is not compatible. Is there any way to do it?

Mar.28,2021
What does

A page to B page mean? Do you want to open two pages in the browser like this?


values above ie9 can be passed using localStorage, and ie8 and below are compatible with userData. UserData supports a maximum of 128KB, which should be sufficient. For more information, see

localstorage is compatible with browsers below ie8
storage compatibility under IE8 Writing


url actually refers to the value passed by GET. You can use the POST request method to be more secure, and the amount of data transferred will be much larger


adjust the backend interface to


Why return it to the front end?

Menu