还是出现vendor.js:346 [Vue warn]: Error in data(): "TypeError: Cannot read property 'getItem' of undefined"和vendor.js:945 TypeError: Cannot read property 'getItem' of undefined
时间: 2023-10-16 10:56:31 浏览: 176
出现这个错误的原因是`localStorage`在某些环境中不可用,导致无法读取`getItem`属性。
为了解决这个问题,你可以在访问`localStorage`之前进行检查。如果`localStorage`不可用,你可以使用一个备选方案来存储和获取数据,比如使用`sessionStorage`或者使用一个普通的JavaScript对象来模拟本地存储。
下面是修改后的代码示例,使用一个普通的JavaScript对象来模拟本地存储:
```html
<template>
<uni-forms ref="mineForm" :rules="mineRules" :modelValue="mineFormData">
<uni-forms-item label="姓名" :required="true" name="name">
<uni-easyinput v-model="mineFormData.name" placeholder="请输入姓名"></uni-easyinput>
</uni-forms-item>
</uni-forms>
<button type="primary" size="mini" @click="save('mineForm')">保存</button>
</template>
<script>
export default {
data() {
return {
mineFormData: {
name: this.getLocalStorageData('name') || '', // 从本地存储中获取已保存的姓名
},
mineRules: {
name: {
rules: [
{
required: true,
errorMessage: '姓名不能为空',
},
],
},
},
};
},
methods: {
getLocalStorageData(key) {
if (typeof localStorage !== 'undefined') {
return localStorage.getItem(key);
} else {
return this.storage[key];
}
},
setLocalStorageData(key, value) {
if (typeof localStorage !== 'undefined') {
localStorage.setItem(key, value);
} else {
this.storage[key] = value;
}
},
save(ref) {
this.$refs[ref].validate().then(res => {
console.log('success', res);
this.setLocalStorageData('name', this.mineFormData.name); // 将姓名保存在本地存储中
uni.showToast({
title: '保存成功',
});
}).catch(err => {
console.log('err', err);
});
},
},
created() {
this.storage = {}; // 创建一个对象来模拟本地存储
},
};
</script>
```
通过在`getLocalStorageData`和`setLocalStorageData`方法中检查`localStorage`的可用性,并使用一个普通的JavaScript对象来模拟本地存储,这样可以避免在不支持`localStorage`的环境中出现错误。同时,你可以在`created()`钩子函数中创建一个空对象来模拟本地存储。
阅读全文