07 2020 档案

摘要:eclipse Ctrl+Shift+← 选中光标左边的单词 Ctrl+Shift+→ 选中光标右边的单词 Alt+Shift+L 阅读全文
posted @ 2020-07-29 17:47 jentary 阅读(94) 评论(0) 推荐(0) 编辑
摘要:在命令行使用属性时,是-D,比如:mvn -Dinput=test 引用官方的说明https://maven.apache.org/pom.html#Properties: Properties 属性是了解POM基础知识的最后一个要素。Maven属性是值占位符,如Ant中的属性。它们的值可以通过使用 阅读全文
posted @ 2020-07-29 08:18 jentary 阅读(558) 评论(0) 推荐(0) 编辑
摘要:cd existing_git_repo git remote add origin https://git.oschina.net/name/package.git git push -u origin master 阅读全文
posted @ 2020-07-21 19:11 jentary 阅读(96) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2020-07-18 09:43 jentary 阅读(167) 评论(0) 推荐(0) 编辑
摘要:let name = "aaa"; let age = 1; let add = function () { console.log('添加'); } // let obj = { // name: name, // age: age, // add: add // } let obj = { na 阅读全文
posted @ 2020-07-14 19:09 jentary 阅读(103) 评论(0) 推荐(0) 编辑
摘要:1.命名导出 命名导出就是明确导出的变量名称和值。 在src目录下创建math.js,index.js文件。 math.js内容: // Case 1: export后面跟变量输出声明语句 export var PI = 3.14; // Case 2: export后面直接跟变量定义语句 expo 阅读全文
posted @ 2020-07-02 17:09 jentary 阅读(386) 评论(0) 推荐(0) 编辑
摘要:let node = { type : 'identifier', name : 'foo' }; let {type,name} = node; console.log(type);//'identifier' console.log(name);//'foo let node = { type 阅读全文
posted @ 2020-07-02 10:50 jentary 阅读(134) 评论(0) 推荐(0) 编辑