关于bind绑定函数缺省参数疑惑
高洛峰
高洛峰 2016-11-11 15:32:05
0
2
590

控制台执行下面

function getConfig(color,size,otherOptions){
    console.log(color,size,otherOptions);
}
var defaultConfig = getConfig.bind("#FFF","20*12");
defaultConfig ('123')

输出20*12 123 undefined

请问输出的20*12 123 undefined是什么原理?为什么下面的语句正常输出

function getConfig(color,size,otherOptions){
    console.log(color,size,otherOptions);
}
var defaultConfig = getConfig.bind(null,"#FFF","20*12");
defaultConfig ('123')

输出#FFF 20*12 123

.bind第一个参数为null时,后面的参数为什么自动对应getConfig的前两个参数?


高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

répondre à tous(2)
学霸
    function getConfig(color, size, otherOptions) {
        console.log(color, size, otherOptions);
    }

var defaultConfig = getConfig.bind("#FFF","20*12");

bind第一个不是参数,第二个开始是第一个参数,所以这里第一个color设置为了"20*12",第二、三个参数都为undefinde

 defaultConfig('补上第二个参数');

函数调用时,只传入了一个参数,补上了第二空位,第三个参数依然为undefinde

var defaultConfig = getConfig.bind(null,"#FFF","20*12");

第一个null不是参数,所以参数第一个和第二个为:#FFF,20*12

defaultConfig ('补上第三个参数');

函数调用补上了第三个参数,再设置更多的参数也无效,因为函数本身只有三个形参


三叔

bind的第一个参数是做为原函数的this指向的,第二个参数开始才是函数的参数
可以去看下这篇文章https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/bind

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!