我正在使用localStorage.setItem
和localStorage.getItem
存储来自API的数据(以我的情况为设备),以通过页面重置保持持久性。单击设备后,它将存储在购物袋中。当用户单击包装袋中的设备时,我希望它能够“删除”并从本地存储中删除。
现在它可以正常工作,以便在UI上显示它已被删除,但是当页面刷新时它又回来了,因为它仍在localStorage中。
我尝试在localStorage.removeItem(deviceTitle)
函数中使用removeDevice
,但似乎没有任何作用。这是因为我在localStorage.getItem
中有componentDidMount
吗?如果是这样,我该如何进行更改以使removeItem
函数起作用?
addDevice()
是通过onClick函数调用的(请告诉我您是否需要查看代码的那一部分)
addDevice = (e, deviceTitle) => {
const array = Array.from(this.state.bag);
if (array.indexOf(deviceTitle) === -1) {
array.push(deviceTitle);
} else {
return;
}
localStorage.setItem("list", JSON.stringify(array));
this.setState({
bag: array
});
};
应该在此处将设备从本地存储中删除
removeDevice = (e, deviceTitle) => {
this.setState(prevState => ({
bag: prevState.bag.filter(d => d !== deviceTitle)
}));
localStorage.removeItem(deviceTitle);
};
这是存储设备的我的componentDidMount()
componentDidMount() {
this.search("");
const storedList = JSON.parse(localStorage.getItem("list"));
console.log(storedList);
const bag = storedList;
this.setState({ bag });
}
编辑下面添加的更多代码:
render() {
return (
<div>
<form>
<input
type="text"
placeholder="Search for devices..."
onChange={this.onChange}
/>
{this.state.devices.map(device => (
<ul key={device.title}>
<p>
{device.title}{" "}
<i
className="fas fa-plus"
style={{ cursor: "pointer", color: "green" }}
onClick={e => this.addDevice(e, device.title)}
/>
</p>
</ul>
))}
</form>
{this.state.bag.map(device => (
<p key={device.title}>
{device}
<i
className="fas fa-times"
style={{ cursor: "pointer", color: "red" }}
onClick={e => this.removeDevice(e, device)}
/>
</p>
))}
<button onClick={e => this.removeAll(e)}>Remove all</button>
</div>
);
}
}
以下是其外观的屏幕截图: items in local storage, items after being removed in the UI 但是当我重置页面时,由于未将设备从localStorage中删除,因此页面恢复为第一张图像
答案 0 :(得分:0)
您正在将list
项设置为设备阵列。但是,如果删除它,则尝试删除设备名称。
删除项目的方法是将其从数组中删除,然后调用localStorage.setItem("list", JSON.stringify(array));
,使数组不存在要删除的元素。
在此处了解更多信息:https://developer.mozilla.org/en-US/docs/Web/API/Storage/removeItem
答案 1 :(得分:0)
由于您已经在过滤数据并更新状态,因此可以为setState
添加第二个参数,这是一个回调。在回调中,您可以从状态中获取更新的包,并将其设置为替换localStorage中的值。
您可以这样做
removeDevice = (e, deviceTitle) => {
this.setState(prevState => ({
bag: prevState.bag.filter(d => d !== deviceTitle)
}), () => {
const { bag } = this.state;
localStorage.setItem("list", JSON.stringify(bag))
});
};
答案 2 :(得分:0)
删除项目本身后,只需替换数组
removeDevice = (e, deviceTitle) => {
this.setState(prevState => ({
bag: prevState.bag.filter(d => d !== deviceTitle)
}));
// actual localStorage item removing
let devicesArray = JSON.parse(localStorage.getItem("list"))
devicesArray.splice(devicesArray.indexOf(deviceTitle), 1)
localStorage.setItem("list", JSON.stringify(devicesArray));
};
因为设置项在其中,它将替换其值检查here