function hello (name) {
console.log('Hi, ' + name);
}
Bad:
db.createCollection('cardLikeRecord')
db.createCollection('card-like-record')
db.createCollection('cardlikerecord')
Good:
db.createCollection('card_like_record')
-
多个单词使用下划线
_
连接 -
索引使用小程序提供的
_id
-
用户的 openID 统一使用
openid
-
记录统一增加
create_at
和update_at
两个属性
Bad:
{
"id": 12,
"openID": "useropenid"
}
Good:
{
"_id": "randomstring",
"openid": "useropenid",
"create_at": "db.serverDate()",
"update_at": "db.seerverDate()"
}