码迷,mamicode.com
首页 >  
搜索关键字:.property    ( 8449个结果
JavaScript delete关键字
delete 语法:Boolean delete obj.property 主要用于删除对象的属性,删除成功或失败会返回相应布尔值 可以删除非关键字定义的全局变量(var a = 1不能被删除,a= 1可以) 删除对象中不存在的属性会返回true 不能删除对象原型对象protype的属性,但是依然返 ...
分类:编程语言   时间:2020-03-19 13:42:33    阅读次数:62
日常报错:There is no getter for property named 'Subject' in 'class cn.kgc.zyp.entity.Teacher'解决方法
这段报错的意思很容易理解,就是在实体类Teacher中没有get方法,但是检查发现里面确实有这个get方法,那为啥还报错呢 其实当一塔低昂有问题是也会出现这个报错,经过检查发现:在TeacherMapper.xml中表名写成了大写,实际上是teacher,改成小写后问题就迎刃而解了。。。 ...
分类:其他好文   时间:2020-03-18 20:22:09    阅读次数:90
spring 05——使用注解开发
说明 在spring4之后,想要使用注解形式,必须得要引入aop的包 在配置文件当中,还得要引入一个context约束 1、Bean的实现 我们之前都是使用 bean 的标签进行bean注入,但是实际开发中,我们一般都会使用注解! 1. 配置扫描哪些包下的注解 2. 在指定包下编写类,增加注解 3. ...
分类:编程语言   时间:2020-03-18 18:55:40    阅读次数:73
vue躺坑之常用操作
完整原文: "https://hongwan.xyz/archives/" 一.支持ie11: 二.组件切换返回最顶层 三.页面缓存 四.路由跳转 参数接收: 五.[Vue warn]: Error in mounted hook: "TypeError: Cannot read property ...
分类:其他好文   时间:2020-03-17 13:57:03    阅读次数:69
Uncaught TypeError: Cannot read property 'cells' of undefined
<table border="1" width="50%" id="table"> <tr> <th>学号</th> <th>姓名</th> <th>操作</th> </tr> <tr> <td>xh001</td> <td>阮雌</td> <td><a href="javascript:;" on ...
分类:其他好文   时间:2020-03-16 14:45:41    阅读次数:84
利用描述符自定制property
1 class property2: 2 def __init__(self, func): 3 print('执行property2') 4 self.func = func 5 6 def __get__(self, instance, owner): 7 return self.func(in ...
分类:其他好文   时间:2020-03-16 12:29:49    阅读次数:51
Unity3D 加载二进制数据
【Unity加载二进制数据】 The first step is to save your binary data file with the ".bytes" extension. Unity will treat this file as a TextAsset. As a TextAsset ... ...
分类:编程语言   时间:2020-03-16 09:18:31    阅读次数:132
015_myBatis形参是字符串的错误
There is no getter for property named ... in 'class java.lang.String' 在使用mybaitis传参数的时候,如果仅传入一个类型为String的参数,那么在 xml文件中应该使用_parameter来代替参数名。 正确的写法: <se ...
分类:其他好文   时间:2020-03-16 09:17:32    阅读次数:65
使用vue router 的过程中抱Error in render: "TypeError: Cannot read property 'matched' of undefined"的错误
最近遇到这样一个问题,百思不得其解: 原因肯定是出在router上,但是具体哪里不清楚,于是百度一番,终于发现解决方法: 其实这是因为创建的router实例是有命名规范的 import Vue from 'vue' import App from './App.vue' import rou fro ...
分类:其他好文   时间:2020-03-15 15:01:56    阅读次数:75
Idea------启动项目时yml文件包含中文报错
报错信息: java.lang.IllegalStateException: Failed to load property source from location ‘classpath:/application.yml 解决方法: File -> Settings -> File Encodin ...
分类:其他好文   时间:2020-03-15 13:37:18    阅读次数:100
8449条   上一页 1 ... 48 49 50 51 52 ... 845 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!