码迷,mamicode.com
首页 >  
搜索关键字:transition property duration timing-function delay    ( 11734个结果
Mybatis返回主键
<insert id="addPerson" parameterType="person"> /* keyColumn 表中的主键列名 keyProperty 实体类中的字段名*/ <selectKey keyColumn="pid" keyProperty="pid" resultType="in ...
分类:其他好文   时间:2020-05-15 20:33:07    阅读次数:89
Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router
原因:就如报错提示所描述的,不能重新定义$router,说明是重复定了$router。通常是因为在项目中安装了vue-router的依赖并且用Vue.use()使用了vue-router,还在index.html页面引入了vue-router.js文件。 解决方法有两种: 1. 去掉index.ht ...
分类:其他好文   时间:2020-05-15 19:51:07    阅读次数:177
timer类
类 timer 的属性: BusyMode:TimerFcn执行过程中所采取的操作。 ErrorFcn :发生错误时执行的回调函数。 ExecutionMode:用于调度计时器事件的模式。 Name:计时器对象的描述性名称。 Period:TimerFcn执行之间的秒数。 StartDelay:启动 ...
分类:其他好文   时间:2020-05-15 13:15:32    阅读次数:69
[php-src] Php扩展开发的琐碎注意点、细节
内容均以php-5.6.14为例. 函数中接收的字符串参数长度不包含结尾的0,在 zend_update_property 中,长度的参数是 int len,一般都使用 ZEND_STRL(NAME)自动填充字符串和长度,它的长度实现是 sizeof(NAME) - 1,它也不需要结尾的0; #un ...
分类:Web程序   时间:2020-05-15 00:13:40    阅读次数:78
easyui Cannot read property 'options' of undefined
使用easyui窗口:以下是父页面 <html> <head> <title>定时调度管理</title> </head> <body width="100%" height="100%"> <table id="ListTable" title="定时调度管理" style="width: 100 ...
分类:其他好文   时间:2020-05-14 15:15:32    阅读次数:181
VUE使用axios数据请求时报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法
正常定义全局变量: data:function (){ return{ currentOrders:[] } }, 使用Axios发送请求并获取后端数据时,如果在then中使用this.currentOrders会出现TypeError: Cannot set property 'xxxx' of ...
分类:移动开发   时间:2020-05-14 13:06:30    阅读次数:276
Microsoft Visual Studio正在等待操作完成
Visual Studio is waiting for an operation to complete. If you regularly encounter this delay during normal usage please report this problem to Microso ...
分类:其他好文   时间:2020-05-14 12:51:58    阅读次数:108
promise retry实现
retry(pf,{ times: 3, //每次延迟 delay: 1000, //每次延迟增量 increment: 1000, shouldRetry: (err,opts) => { //判断是否应该继续 return true; }, onRetry: (data) => { //收集er ...
分类:其他好文   时间:2020-05-13 20:13:27    阅读次数:103
JavaScript の 内容属性(HTML属性attribute)和 DOM 属性(property)
[博文]内容属性(HTML属性)和 DOM 属性 标签: 博文 JavaScript 粗略解读(与jQuery做对比) 内容属性(HTML属性) : attribute DOM 属性(Element属性) : property jQuery 中的:attr() 对应原生JS中的 setAttribu ...
分类:编程语言   时间:2020-05-12 23:13:38    阅读次数:124
WPF - 简单的UI框架 - 灵活的按钮
按钮样式自定义演示: 源码分享地址: https://github.com/DuelWithSelf/WPFEffects 效果: <Style TargetType="{x:Type CustomFrms:NormalMenu}"> <Setter Property="IconWidth" Val ...
分类:Windows程序   时间:2020-05-12 20:18:16    阅读次数:86
11734条   上一页 1 ... 54 55 56 57 58 ... 1174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!