如何在 TradingView 图表库中保留图表 configurations/modifications

How to persist chart configurations/modifications in TradingView charting library

大家好,周五快乐!我只是在这里,因为我一直在努力弄清楚这一点,想知道是否有人有任何想法或建议。我正在使用 TradingView 库并试图使我对图表所做的 configurations/modifications 即使在页面刷新后也能保留。例如,如果我修改 tradingview 库图表的视图,并刷新页面,图表会删除我之前所做的所有修改和配置。有什么办法可以让我保留当前对的所有这些数据?不确定在哪里可以完成此操作,但下面是一些可能有帮助的代码:

如果你只想在前端存储数据,而不向后端发送数据,有localstorage https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage

myStorage = window.localStorage;
myStorage.setItem('myCat', 'Tom');
const cat = myStorage.getItem('myCat');