el-cascader绑定key值后还是报错:rror in callback for watcher "options": "TypeError: Cannot read properties of null (reading 'level')"
时间: 2024-01-26 16:40:36 浏览: 119
keras报错:ValueError: Cannot create group in read only mode
5星 · 资源好评率100%
这个错误可能是因为你的 `el-cascader` 组件的 `options` 属性中包含了 `null` 值,而你在绑定 `key` 值时使用了 `null` 值。你可以在绑定 `key` 值时,先判断当前的值是否为 `null`,如果是则不绑定 `key` 值。例如:
```html
<el-cascader
:options="options"
:key="options ? options.level : undefined"
></el-cascader>
```
这样做可以避免绑定 `null` 值导致的错误。
阅读全文