码迷,mamicode.com
首页 >  
搜索关键字:ts    ( 1597个结果
STM32 定时器级联
根据参考手册给出的主/ 从定时器的例子 其实就是主定时器产生一个触发信号,让从定时器去接收这个触发信号,通过这个触发信号来让从定时器工作。 下面我们来看看我设置的从定时器 只需要配置 TIMx->SMCR 的TS[2:0] (Trigger selection) 选择是哪一个触发信号来触发从定时器工 ...
分类:其他好文   时间:2017-09-16 20:33:34    阅读次数:254
表空间基于时间点的恢复
步骤:1.检测和解决对要恢复的表空间有依赖关系的对象问题select * from sys.ts_pitr_check where (ts1_name = 'UERS' and ts2_name != 'USERS') or (ts1_name != 'USERS' and ts2_name = ' ...
分类:其他好文   时间:2017-09-16 20:30:50    阅读次数:179
不知道怎么改的尴尬R语言的ARIMA模型预测
数据还有很多没弄好,程序还没弄完全好。 > read.xlsx("H:/ProjectPaper/论文/1.xlsx","Sheet1") > item<- read.xlsx("H:/ProjectPaper/论文/1.xlsx","Sheet1") > item<- ts(item,start= ...
分类:编程语言   时间:2017-09-16 14:46:12    阅读次数:337
angular使用Md5加密
一、现象 用户登录时需要记住密码的功能,在前端需要对密码进行加密处理,增加安全性 二解决 1、利用npm(如果没有,先自行安装npm)安装ts-md5 npm install ts-md5 --save-dev 2、在使用的页面中导入 3、使用 三、总结 发现这个 npm install md5 - ...
分类:其他好文   时间:2017-09-15 20:31:38    阅读次数:151
[Vue + TS] Create your own Decorators in Vue with TypeScript
We’ve used @Watch, @Inject and more decorators from vue-property-decorator. In this lesson however we will guide you through creating your own decorat ...
分类:其他好文   时间:2017-09-14 21:55:03    阅读次数:282
[Vue + TS] Use Dependency Injection in Vue Using @Inject and @Provide Decorators with TypeScript
Vue 2.2 introduced a simple dependency injection system, allowing you to use provide and inject in your component options. This lesson shows you how t ...
分类:其他好文   时间:2017-09-14 21:51:36    阅读次数:370
windows下安装pthreads扩展注意问题
1、php版本必须是ts版本 2、pthreads扩展下载地址 http://windows.php.net/downloads/pecl/releases/pthreads/ 3、把下载的扩展php_pthreads.dll复制到对应php扩展目录 4、把下载的扩展文件夹中的pthreadVC2. ...
分类:Windows程序   时间:2017-09-14 16:53:45    阅读次数:208
02-TypeScript中新的字符串
TypeScript中引入了字符串模板,通过字符串模板可以方便的实现字符串换行的连接、方便变量的使用等。 1.在WebStorm中新建一个文件,后缀名为ts。 在建立ts文件时,WebStorm会问你是否需要自动生成对应的js文件,并设置js文件保存的位置。如果采用Visual Studio 201 ...
分类:其他好文   时间:2017-09-14 16:30:57    阅读次数:120
javascript引用类型
对象的创立:1.new构造法 var person = new object(); person.name = "qi";2.对象字面量(首选) var person={name:"qi",age:22} //也可以 "name":"qi" 这里的name会自动转换为字符串 或者 var perso ...
分类:编程语言   时间:2017-09-14 10:34:02    阅读次数:183
[Vue +TS] Use Two-Way Binding in Vue Using @Model Decorator with TypeScript
Vue models, v-model, allow us to use two-way data binding, which is useful in some cases such as forms. This lesson shows how to use it by creating a ...
分类:其他好文   时间:2017-09-13 21:17:45    阅读次数:266
1597条   上一页 1 ... 88 89 90 91 92 ... 160 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!