编码风格
文件
[必须] JavaScript 源文件必须以 UTF-8 编码,且无 BOM。
缩进
[必须] 4 个空格缩进。不允许使用制表符和 2 个空格。
[必须] switch
中的 case
和 default
必须缩进。
// good
switch (variable) {
case '1':
// do...
break;
case '2':
// do...
break;
default:
// do...
}
// bad
switch (variable) {
case '1':
// do...
break;
case '2':
// do...
break;
default:
// do...
}
空格
[必须] 使用空格设置二元运算符。但在一元运算符及其操作数之间不放置空格。
let a = !arr.length;
a++;
a = b + c;
[必须] 在左花括号前放置 1 个空格。
// good
if (condition) {
}
set('attr', {
some: 'xxx',
any: 'yyy'
});
function funcName() {
}
// bad
if (condition){
}
set('attr',{
some: 'xxx',
any: 'yyy'
});
function funcName(){
}
[必须] 在 if
/ else
/ for
/ while
/ function
/ switch
/ do
/ try
/ catch
/ finally
后放置 1 个空格。
// good
if (condition) {
}
while (condition) {
}
(function () {
})();
// bad
if(condition) {
}
while(condition) {
}
(function() {
})();
[必须] 在对象创建语句中,在 :
后放置 1 个空格,但在其前不放置空格。
// good
const obj = {
a: 1,
b: 2,
c: 3
};
// bad
const obj = {
a : 1,
b:2,
c :3
};
[必须] 在函数声明、命名函数的表达式和函数调用中,在函数名和 (
之间不放置空格。
// good
function funcName() {
}
const funcName = function funcName() {
};
funcName();
// bad
function funcName () {
}
const funcName = function funcName () {
};
funcName ();
[必须] 在 ,
和 ;
之间不放置空格。
// good
callFunc(a, b);
// bad
callFunc(a , b) ;
[必须] (
和 [
后面、)
和 ]
前面不能有空格。
// good
callFunc(param1, param2, param3);
save(this.list[this.indexes[i]]);
needIncream && (variable += increament);
if (num > list.length) {
}
while (len--) {
}
// bad
callFunc( param1, param2, param3 );
save( this.list[ this.indexes[ i ] ] );
needIncreament && ( variable += increament );
if ( num > list.length ) {
}
while ( len-- ) {
}
// good
const arr1 = [];
const arr2 = [1, 2, 3];
const obj1 = {};
const obj2 = {name: 'obj'};
const obj3 = {
name: 'obj',
age: 20,
sex: 1
};
// bad
const arr1 = [ ];
const arr2 = [ 1, 2, 3 ];
const obj1 = { };
const obj2 = { name: 'obj' };
const obj3 = {name: 'obj', age: 20, sex: 1};
[必须] 每行末尾不能有尾随空格。
换行
[必须] 语句末尾换行。
[必须] 每行不超过 120 个字符。
[必须] 如果运算符导致换行,则将其放在行首。
// good
if (user.isAuthenticated()
&& user.isInRole('admin')
&& user.hasAuthority('add-admin')
|| user.hasAuthority('delete-admin')
) {
// Code
}
const result = number1 + number2 + number3
+ number4 + number5;
// bad
if (user.isAuthenticated() &&
user.isInRole('admin') &&
user.hasAuthority('add-admin') ||
user.hasAuthority('delete-admin')) {
// Code
}
const result = number1 + number2 + number3 +
number4 + number5;
[必须] 如果括号内的内容占多行,则为 )
、]
、}
单独起一行。缩进与相应的 (
、[
、{
所在行相同。
// good
if (product) {
product.load();
if (user.isAuthenticated()
&& user.isInRole('admin')
&& user.hasAuthority('add-admin')
) {
sendProduct(user, product);
}
}
const arr = [
'candy', 'sugar'
];
// bad
if (product) {
product.load();
if (user.isAuthenticated()
&& user.isInRole('admin')
&& user.hasAuthority('add-admin')) {
sendProduct(user, product);
}
}
const arr = [
'candy', 'sugar'
];
[必须] ,
或 ;
前面不能换行。
// good
const obj = {
a: 1,
b: 2,
c: 3
};
foo(
aVeryVeryLongArgument,
anotherVeryLongArgument,
callback
);
// bad
const obj = {
a: 1
, b: 2
, c: 3
};
foo(
aVeryVeryLongArgument
, anotherVeryLongArgument
, callback
);
[建议] 关于换行和缩进的建议
if (user.isAuthenticated()
&& user.isInRole('admin')
&& user.hasAuthority('add-admin')
) {
// Code
}
foo(
aVeryVeryLongArgument,
anotherVeryLongArgument,
callback
);
baidu.format(
dateFormatTemplate,
year, month, date, hour, minute, second
);
$('#items')
.find('.selected')
.highlight()
.end();
const result = thisIsAVeryVeryLongCondition
? resultA : resultB;
const res = condition
? thisIsAVeryVeryLongResult
: resultB;
[必须] 如果使用多行块,则为 else
和 catch
单独起一行。
// good
if (condition) {
// some statements;
}
else {
// some statements;
}
try {
// some statements;
}
catch (ex) {
// some statements;
}
// bad
if (condition) {
// some statements;
} else {
// some statements;
}
try {
// some statements;
} catch (ex) {
// some statements;
}
语句
[必须] 语句末尾的分号不能省略。
[必须] 即使只有一行,也不能省略 {}
。
// good
if (condition) {
callFunc();
}
// bad
if (condition) callFunc();
if (condition)
callFunc();
[必须] 函数定义末尾不能加分号。
// good
function funcName() {
}
// bad
function funcName() {
};
// For function expression, the semicolon must not be ignored.
const funcName = function () {
};
[必须] 对象和数组声明中不能有尾随逗号。
// good
const obj = {
attr1: 'xxx',
attr2: 'yyy'
};
const arr = [
'xxx',
'yyy'
];
// bad
const obj = {
attr1: 'xxx',
attr2: 'yyy',
};
const arr = [
'xxx',
'yyy',
];
命名约定
[必须] 变量、属性和函数名使用小驼峰命名法。
const loadingModules = {};
function loadProduct() {
}
[必须] 类名使用大驼峰命名法(帕斯卡命名法)。
function Element(options) {
}
[建议] 缩写的全部字母都应为大写或小写。
function parseSVG() {
}
const svgParser;
语言特性
兼容性
语言特性可以通过一些实用程序进行填充,但不能通过修改内置 JS 对象的原型来填充。
// good
import * as zrUtil from 'zrender/src/core/util';
zrUtil.each(array, function (val, index) {
sum += val;
});
const result = zrUtil.map(array, function (val) {
return parse(val);
});
const pos = zrUtil.indexOf(array, val);
const obj2 = zrUtil.extend({}, obj1);
function Element() {
// ...
}
// bad
array.forEach(function (val, index) {
sum += val;
});
let result = array.map(function (val) {
return parse(val);
});
const pos = array.indexOf(val);
const obj2 = Object.assign({}, obj1);
class Element {
// ...
}
String.prototype.trim = function () {
};
变量
[必须] 优先使用 const
声明变量。一行不能声明多个变量。
// good
const name = 'MyName';
const hangModules = [];
const missModules = [];
const visited = {};
// bad
name = 'MyName';
const hangModules = [],
missModules = [],
visited = {};
条件
[必须] 在相等表达式中,==
只能用于检测 null
或 undefined
。其他情况下应使用 ===
。
// good
if (age === 30) {
// ...
}
if (type == null) {
// ...
}
// bad
if (age == 30) {
// ......
}
[建议] 使用 xxx == null
来判断 null
或 undefined
。
[建议] 尽量使 null
和 undefined
的含义相同,即不要让用户或开发人员区分变量是 null
还是 undefined
。
[建议] 函数表达式或函数声明不应放在循环体中。
// good
function clicker() {
// ......
}
for (let i = 0, len = elements.length; i < len; i++) {
const element = elements[i];
addListener(element, 'click', clicker);
}
// bad
for (let i = 0, len = elements.length; i < len; i++) {
const element = elements[i];
addListener(element, 'click', function () {});
}
类型转换
[建议] 使用 + ''
将值转换为字符串。
// good
num + '';
// bad
new String(num);
num.toString();
String(num);
[建议] 使用 +
将值转换为数字。
// good
+str;
// bad
Number(str);
[必须] 使用 parseInt
时,不能忽略第二个参数。
// good
parseInt(str, 10);
// bad
parseInt(str);
字符串、对象、数组
[必须] 使用 '
而非 "
定义字符串。
[必须] 使用对象字面量 {}
创建普通对象。
// good
const obj = {};
// bad
const obj = new Object();
[必须] 如果对象字面量的所有属性都不需要引号,则忽略引号。如果需要引号,则使用 '
而不是 "
。
// good
const info = {
name: 'someone',
age: 28
};
// bad
const info = {
'name': 'someone',
'age': 28
};
const info2 = {
"age": 40
};
[必须] 不得修改内置对象的原型。
// Forbidden
String.prototype.trim = function () {
};
[建议] 尽量使用 .
而不是 []
访问对象的属性。
[建议] 使用 for ... in ...
时应使用 hasOwnProperty
,以防在某些运行时环境中 Object
的原型上添加了一些额外的属性。
const newInfo = {};
for (const key in info) {
if (info.hasOwnProperty(key)) {
newInfo[key] = info[key];
}
}
[必须] 使用数组字面量 []
创建数组,除非打算创建具有给定长度的数组。
// good
const arr = [];
const arr2 = new Array(1e4);
// bad
const arr = new Array();
[必须] 在数组遍历中不要使用 for in
。
其他
[必须] 不要使用 eval
和 with
。可以使用 new Function
。