数据缓存setStorageSync版本:1.x本页总览Taro.setStorageSync(KEY, DATA)将 data 存储在本地缓存中指定的 key 中,会覆盖掉原来该 key 对应的内容,这是一个同步接口。参数说明:参数类型必填说明keyString是本地缓存中的指定的 keydataObject/String是需要存储的内容示例代码import Taro from '@tarojs/taro'Taro.setStorageSync('key', 'value')API支持度API微信小程序H5React NativeTaro.setStorageSync✔️✔️