1.读取文件扩展名

1
2
3
4
5
6
7
8
function getFileExtension(filename) {
// 使用lastIndexOf('.')获取文件名中最后一个点的位置
var index = filename.lastIndexOf('.');
// 如果点的位置小于0,则表示没有点或者点不在字符串的开始位置,返回空字符串
if (index < 0) return '';
// 使用substring方法获取点之后的字符串作为扩展名
return filename.substring(index + 1);
}

2.Map类型说明

(1)获取map的所有key。
(必须使用Array.from()转换MapIterator类型为数组,不然代码检查不通过)

1
2
3
4
const map = new Map<string, any>();
map.set('1','a');
const arr = Array.from(map.keys());
console.log(arr); // 1

3.遍历对象的所有属性

1
2
3
4
5
6
for (const key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
    // 执行操作
    map.set(key, data[key]);
   }
}

4.添加对象属性

1
2
const obj: any = {};
Object.assign(obj, { propertyName: value });