我有两个与代码相关的问题:
对于我的代码,我应该在 if - else 的每个部分之后有一个 break 语句,还是最后只有一个?当我定义我的对象时。对 Pk、Param、Table、Success 等字段使用大写字母是标准做法吗?
case "Exam":
if (accountID) {
obj = {
pk: pk = accountID + "04000",
param: '?pk=' + accountID + "04000",
table: "Content",
success: true
};
// break here ?
} else {
paramOnFailure("Please reselect Account");
obj = {
success: false
};
// break here ?
}
// break here ?