当我读到有关sessionStorage和localStorage时,我想要像pathStorage一样。
我看到并覆盖存储的地方,
Storage.prototype._setItem = Storage.prototype.setItem;
Storage.prototype.setItem = function(key, value)
{
_key = window.location.pathname + ":" + key;
this._setItem(_key, value);
}
Storage.prototype._getItem = Storage.prototype.getItem;
Storage.prototype.getItem = function(key)
{
_key = window.location.pathname + ":" + key;
return this._getItem(_key);
}
但是这个问题只会覆盖localstorage和session storage。
我想要一个新的有点路径存储而不覆盖localStorage和sessionStorage。