上一页 1 ··· 23 24 25 26 27
摘要: vue单向数据流绑定属性值 v bind: (属性) 简写 :(属性) 例子:`` 单向数据绑定 内存改变影响页面改变 v bind就是对属性的简单赋值,当内存中值改变,还是会触发重新渲染 vue双向数据流 v model 只作用于有value属性的元素 例子:`` 双向数据绑定 页面对于input 阅读全文
posted @ 2020-03-26 22:21 xl4ng 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 什么是指令 在vue中提供一些对于页面+数据的更为方便的操作,这些操作就叫做指令。 譬如在HTML页面中这样使用`` 在vue中v xxx就是vue的指令 指令就是以数据去驱动DOM行为的,简化DOM操作 常用的指令有哪些,及怎么使用这些指令 v text 不可解析html标签 v html 可解析 阅读全文
posted @ 2020-03-26 22:02 xl4ng 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1. 引包 确认已经下载了node,然后执行命令 npm install vue (如需下载自己要的版本在vue后面加上@版本号) 页面引入刚下载的包 ​ `` 2. 留坑 即留一个vue模板插入的地方或者是vue代码对其生效的地方 3. 实例化 即启动Vue 启动: new Vue({el:目的地 阅读全文
posted @ 2020-03-26 21:23 xl4ng 阅读(274) 评论(0) 推荐(0) 编辑
摘要: DATEDIFF ( datepart , startdate , enddate ) 释义:计算时间差; datepare值:year | quarter | month | week | day | hour | minute | second | millisecond startdate:开 阅读全文
posted @ 2020-03-24 08:33 xl4ng 阅读(943) 评论(0) 推荐(0) 编辑
摘要: BigInteger类实现了任意精度的整数运算,BigDecimal类实现了任意精度的浮点数运算 使用静态类valueOf方法可以将普通的数值转换为大数值: 示例代码 阅读全文
posted @ 2020-03-23 23:31 xl4ng 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ``` package com.company.Util; public class Times { public interface Block{ void execute(); } public static void test(Block block) { long begin =System.currentTimeMillis(); block.execute(); long end = 阅读全文
posted @ 2020-03-23 22:50 xl4ng 阅读(217) 评论(0) 推荐(0) 编辑
摘要: ``` using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Reflection; using System.ComponentModel; namespace EnumApp { class Program { static void Main(str 阅读全文
posted @ 2020-03-23 16:13 xl4ng 阅读(2377) 评论(0) 推荐(0) 编辑
摘要: Java中判断字符串是否相等应使用equals,==运算符比较的是两个字符串是否在同一个位置上。 阅读全文
posted @ 2020-03-22 23:12 xl4ng 阅读(260) 评论(0) 推荐(0) 编辑
摘要: ``` package com.company; public class Main { public static void main(String[] args) { System.out.println("Hello Java!"); } } ``` 阅读全文
posted @ 2020-03-22 22:29 xl4ng 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27