handleAdd 方法最后添加一个this.resetForm()重置表单,避免点击编辑取消后再点击添加的时候表单中有上一次操作的内容
handleAdd() {
this.dialogTitle = '添加期刊'
this.showDialog = true
this.getContentOptions()
this.resetForm()
},
handleAdd() {
this.dialogTitle = '添加期刊'
this.showDialog = true
this.getContentOptions()
this.resetForm()
},
2023-12-05
调用 confirmAdd() 方法关闭页面后需要重置一下表单吧
resetForm() {
this.$refs.form.resetFields()
},
resetForm() {
this.$refs.form.resetFields()
},
2023-12-05
Error: No Sequelize instance passed
这里是Model.init({},{})(这是正确语法) 语法错误
老师的webstorm 有语法提示,不是写的代码 在init中添加了attibutes 和 options
变成了Model.init(attributes:{},options:{}) (这是错误) 这语法提示真坑啊 浪费好久时间
这里是Model.init({},{})(这是正确语法) 语法错误
老师的webstorm 有语法提示,不是写的代码 在init中添加了attibutes 和 options
变成了Model.init(attributes:{},options:{}) (这是错误) 这语法提示真坑啊 浪费好久时间
2023-08-01
老师,Lin CMS 文档的插图现在好像都已经无法访问(或者说无法正常显示)了
比如:https://doc.cms.talelin.com/client/ 中所有的插图都是失效的
比如:https://doc.cms.talelin.com/client/ 中所有的插图都是失效的
2023-07-28
谢谢老师的课程 受益匪浅。我写了八篇系列博客,欢迎小伙伴一起学习https://blog.csdn.net/Sabrina_cc/article/details/128632814
2023-01-10
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'row')
at :8080/js/83.js:113:249
at :8080/js/83.js:113:249
2022-01-18