js 获取函数的所有参数名

Posted 参与商

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取函数的所有参数名相关的知识,希望对你有一定的参考价值。

具体思路:

  利用Function.toString()方法,获取到函数的源码,再利用正则匹配获取到参数名字。

 

实现代码(代码基于ES6):

// 获取函数的参数名
function getParameterName(fn) {
    if(typeof fn !== ‘object‘ && typeof fn !== ‘function‘ ) return;
    const COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg;
    const DEFAULT_PARAMS = /=[^,)]+/mg;
    const FAT_ARROWS = /=>.*$/mg;
    let code = fn.prototype ? fn.prototype.constructor.toString() : fn.toString();
    code = code
        .replace(COMMENTS, ‘‘)
        .replace(FAT_ARROWS, ‘‘)
        .replace(DEFAULT_PARAMS, ‘‘);
    let result = code.slice(code.indexOf(‘(‘) + 1, code.indexOf(‘)‘)).match(/([^\s,]+)/g);
    return result === null ? [] :result;
}

 

如有错误,请指正,感谢。

以上是关于js 获取函数的所有参数名的主要内容,如果未能解决你的问题,请参考以下文章

Python 操作Redis

python爬虫入门----- 阿里巴巴供应商爬虫

Python词典设置默认值小技巧

《python学习手册(第4版)》pdf

Django settings.py 的media路径设置

Python中的赋值,浅拷贝和深拷贝的区别