vue+ts 报错TypeError: Cannot read property ‘extend’ of undefined

  • Post author:
  • Post category:vue

原来是忘记加@Component 导致一系列错误: 找了半天,加上就好了: Component 其实是由vue-class-component提供的,装饰器修饰组件,所以当你使用 export default class ComponentName extends Vue{} 导出声明class的时候,应该使用@Component装饰这个class 就可以给这个实例注入props,componen…

继续阅读 vue+ts 报错TypeError: Cannot read property ‘extend’ of undefined

echarts ReferenceError: require is not defined

  • Post author:
  • Post category:其他

问题: echarts报错:ReferenceError: require is not defined 问题原因,require没有定义,引入错了echarts的js文件 如图错误引用 正确引用: 附上正确引用的js文件内容: //软件打不开,不上传了 版权声明:本文为Connie1451原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https:/…

继续阅读 echarts ReferenceError: require is not defined

Vue TypeError: Cannot set property ‘text‘ of undefined

  • Post author:
  • Post category:vue

遇到这个问题 TypeError: Cannot set property 'text' of undefined 首先在data定义的数据 filterData:[ [{ text: '全部状态', value: '' }], [{ text: '全部类型', value: '' }, { text: '类型1', value: 1 }, { text: '类型2', value: 2 }, {…

继续阅读 Vue TypeError: Cannot set property ‘text‘ of undefined

安装numpy出现的问题已解决:undefined symbol: PyFPE_jbuf

  • Post author:
  • Post category:其他

树莓派安装numpy出现的问题: 其实一般不会遇到这个问题,因为一般树莓派上自带的python3.7和python2.7都默认安装了numpy库。 这里是因为我装了python3.5没有默认自带numpy库出现的问题。 网上给出的解决方案一般是因为这个问题出现的冲突问题,删掉多余的numpy文件夹,经过尝试后没有效果。 这里给出的解决方案是直接通过源码安装: 先下载 wget http://jai…

继续阅读 安装numpy出现的问题已解决:undefined symbol: PyFPE_jbuf

启动报错The bean ‘xxx‘, defined in class path resource

  • Post author:
  • Post category:其他

启动报错The bean ‘xxx’, defined in class path resource … 服务启动报如下错误: ## The bean ‘xxx’, defined in class path resource [com/uniedu/frame/swagger2/Swagger2Configuration.class], could not be registered. A be…

继续阅读 启动报错The bean ‘xxx‘, defined in class path resource

JavaScript中的undefined与null

  • Post author:
  • Post category:java

JavaScript中的undefined与null 一、转载声明: 二、关于undefined==null为true: 三、undefined由来及合理性: 四、undefined和null的对比: 五、补充 1、关于null的一些测试 2、关于undefined的一些测试 一、转载声明: 文章观点源于博客 “阮一峰的网络日志” 中 “undefined与null的区别” 一文以及评论。 注:本…

继续阅读 JavaScript中的undefined与null

总结了解决multiple definition of的方法

  • Post author:
  • Post category:其他

问题原因: 当多个文件包含同一个头文件时,并且你的.H里面没有加上条件编译 #ifndef TEST_H #define TEST_H #endif 就会独立的解释,然后生成每个文件生成独立的标示符。在编译器连接时,就会将工程中所有的符号整合在一起,由于,文件中有重名变量,于是就出现了重复定义的错误。 方法1: 给每一个头文件加上条件编译,避免该文件被多次引用时被多次解释,这是个应该是习惯。这个方…

继续阅读 总结了解决multiple definition of的方法

EF CodeFist 多重外键约束

  • Post author:
  • Post category:其他

对于多重外键的概念,请参考 Sql 多重外键约束 一章 以一个部门类定义有中正副两个管理者的情况为例 //部门类定义 public class Department { public int ID { get; set; } public string Name { get; set; } public int PrimaryManagerID { get; set; } //正管理者外键 p…

继续阅读 EF CodeFist 多重外键约束

【EntityFramework CodeFirst 】错误解析:LINQ to Entities does not recognize the method Guid Parse

  • Post author:
  • Post category:其他

错误信息: System.NotSupportedException:“LINQ to Entities does not recognize the method 'System.Guid Parse(System.String)' method, and this method cannot be translated into a store expression.” Linq to Ent…

继续阅读 【EntityFramework CodeFirst 】错误解析:LINQ to Entities does not recognize the method Guid Parse

spring源码解析——@Import注解解析与ImportSelector,ImportBeanDefinitionRegistrar以及DeferredImportSelector区别

  • Post author:
  • Post category:其他

1. @Import 注解在springBoot中间接的广泛应用 在springboot中并没有直接显式的使用 @Import 标签,而是通过 @Import 标签来间接的提供了很多自动配置的注解。比如 @EnableAutoConfiguration , @EnableConfigurationProperties 等。这些标签的实现都是通过使用 @Import 标签来完成的。 ...... @…

继续阅读 spring源码解析——@Import注解解析与ImportSelector,ImportBeanDefinitionRegistrar以及DeferredImportSelector区别