会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
每天都要进步一点点
善始者实繁,克终者盖寡。 技术栈:angular + ionic + vue + mint-ui + react-native + teaset + h5plus + mui + nodejs + webpack + gulp + ES6 + vux + typescript2 + weex + weex-ui + 微信小程序 + react + ant-design + ant-design-mobile + material-ui + nervjs + taro + taro-ui + spring boot
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
61
62
63
64
65
66
67
68
69
···
142
下一页
2018年12月31日
Spring Boot 注解
摘要: 一、注解(annotations)列表 @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到Configuration类并把
阅读全文
posted @ 2018-12-31 21:06 每天都要进步一点点
阅读(233)
评论(0)
推荐(0)
2018年12月30日
Spring Tool Suite 使用自带maven速度慢---修改settings.xml更新mirror方法
摘要: (1)打开sts,windows --> preference,找到maven,并设置如下。 (2)修改该文件,如下 重新打开sts,在pom.xml上右键,run as, maven clean,maven install。 可以稍微快一点。
阅读全文
posted @ 2018-12-30 23:31 每天都要进步一点点
阅读(1471)
评论(0)
推荐(0)
2018年12月29日
spring-tool-suite(STS) 创建 spring boot项目
摘要: 1.创建一个Spring Starter Project工程(new --> Spring Starter Project) 2.选择自己需要的依赖,因为想要通过REST方式来验证是否成功创建,所以勾选了web(会在pom.xml文件中看到该依赖内容); 然后点击next-->Finish即可 3.
阅读全文
posted @ 2018-12-29 19:36 每天都要进步一点点
阅读(1730)
评论(0)
推荐(0)
2018年12月28日
下载 jdk
摘要: 1.下载JDK: 首先我们需要下载java开发工具包JDK,下载地址如下: http://www.oracle.com/technetwork/java/javase/downloads/index.html 进入后选择Accept License Agreement(接受许可),并下载适合自己系统
阅读全文
posted @ 2018-12-28 21:18 每天都要进步一点点
阅读(517)
评论(0)
推荐(0)
2018年12月27日
maven的下载以及安装
摘要: 1.下载Maven 打开链接:https://maven.apache.org/download.cgi 下载好之后解压到一个盘,我的是解压到F:\Maven\apache-maven-3.5.3-bin\apache-maven-3.5.3 2.解压好了之后配置相关环境变量,在安装Maven之前需
阅读全文
posted @ 2018-12-27 19:51 每天都要进步一点点
阅读(173)
评论(0)
推荐(0)
2018年12月26日
spring boot 环境搭建
摘要: 1.开发工具 https://spring.io/tools/sts/all 2.demo https://start.spring.io 3.下载maven https://maven.apache.org/download.cgi
阅读全文
posted @ 2018-12-26 21:30 每天都要进步一点点
阅读(139)
评论(0)
推荐(0)
2018年12月25日
JavaScript debugger 语句
摘要: 实例 开启 debugger ,代码在执行到第三行前终止。 var x = 15 * 5; debugger; document.getElementbyId("demo").innerHTML = x; 定义和用法 debugger 语句用于停止执行 JavaScript,并调用 (如果可用) 调
阅读全文
posted @ 2018-12-25 22:20 每天都要进步一点点
阅读(577)
评论(0)
推荐(0)
2018年12月24日
taro alias 的使用
摘要: 用来配置目录别名,从而方便书写代码引用路径。例如,使用相对路径书写文件引用如下: 为了避免书写多级相对路径,我们可以如下配置 alias: 通过上述配置,可以将 src 、src/components 以及 src/utils 目录配置成别名,则代码中的引用改写如下: .
阅读全文
posted @ 2018-12-24 19:19 每天都要进步一点点
阅读(2387)
评论(0)
推荐(0)
2018年12月23日
taro 在components文件夹中 新建组件时,组件支持自定义命名,但是不能大写开头
摘要: 在components文件夹中 新建组件时,组件支持自定义命名,但是不能大写开头。否则会报错 错误写法: 正确写法: .
阅读全文
posted @ 2018-12-23 10:33 每天都要进步一点点
阅读(1006)
评论(0)
推荐(0)
2018年12月22日
taro 不支持render中,使用函数多条件渲染
摘要: 不支持render中,使用函数多条件渲染 h5不报错,但是编译成小程序时 会报错 错误写法: onRenderContent = () => { const { verified, recognized } = this.state; let content = null; // 初始化时,必须赋值
阅读全文
posted @ 2018-12-22 12:27 每天都要进步一点点
阅读(1528)
评论(0)
推荐(0)
上一页
1
···
61
62
63
64
65
66
67
68
69
···
142
下一页
公告