In development tests, if you select ie, when editing a certain piece of data, you will look back and edit it, and you will find that the data inside is the same as before without editing. In this case, solving ie cache becomes a problem. My method is to add a timestamp after the request link to only avoid this problem.
Copy the codeThe code is as follows:
var getTimestamp=new Date().getTime(); //Timestamp
var _url = "${}/productData/?productDataId="+value+"&timer=" + getTimestamp;