但是vue.js环境下出现 [Vue warn]: Error in data(): "TypeError: Cannot read property 'getItem' of undefined"和TypeError: Cannot read property 'getItem' of undefined
时间: 2023-08-27 21:56:18 浏览: 84
这个错误是由于在Vue组件中使用`localStorage`时,需要确保代码在浏览器环境下运行。您可以在访问`localStorage`之前进行一些检查,以确保在非浏览器环境下不会出现错误。
以下是修改后的代码示例:
```vue
<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: '',
},
mineRules: {
name: {
rules: [
{
required: true,
errorMessage: '姓名不能为空',
},
],
},
},
};
},
mounted() {
if (typeof localStorage !== 'undefined') {
// 在浏览器环境下
const storedName = localStorage.getItem('name');
if (storedName) {
this.mineFormData.name = storedName;
}
}
},
methods: {
save(ref) {
this.$refs[ref].validate().then(res => {
console.log('success', res);
if (typeof localStorage !== 'undefined') {
// 在浏览器环境下
localStorage.setItem('name', this.mineFormData.name);
}
uni.showToast({
title: '保存成功',
});
}).catch(err => {
console.log('err', err);
});
},
},
};
</script>
```
在这个修改后的代码中,我们在`mounted`生命周期钩子中进行了检查,确保代码运行在浏览器环境下。如果是浏览器环境,我们才会尝试从`localStorage`中获取之前保存的姓名,并将其赋值给`mineFormData.name`。同样,在保存按钮的点击事件中,我们也进行了相同的检查,以确保在浏览器环境下才写入`localStorage`。
这样修改后,您应该不会再遇到`TypeError: Cannot read property 'getItem' of undefined`的错误了。
阅读全文