1. 保留两位小数
fCorrectRate: function(double) {
return Math.round(double * 100)
}
如:
"correctRate": 0.95156
改成
2. 取文本最后一个文字
fShowLastText: function(text) {
return text.charAt(text.length - 1);
}
3.字段转化成文本
fLangCn: function(key) {
var _object = {
"TeachingClasses": "已开课",
"FinishedClasses": "已结课"
}
return _object[key];
}
4.时间取前10位
fnYearMonthDay = function() {
return this.SendTime.substring(0, 10);
}
时间: 2024-10-27 07:11:45