1.读取文件扩展名
1 2 3 4 5 6 7 8
| function getFileExtension(filename) { var index = filename.lastIndexOf('.'); if (index < 0) return ''; 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);
|
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 });
|