gpt4 book ai didi

javascript - 仅传递 javascript 中的第二个参数

转载 作者:数据小太阳 更新时间:2023-10-29 05:51:14 25 4
gpt4 key购买 nike

我正在尝试创建一个函数,其中我只传递函数的第二个参数。

我希望它以这种方式工作:

function test (a,b) { 
// ...
};
// pass only the second parameter
test( ... , b);

我目前的想法是将第二个参数作为事实上动态默认参数传递,如下所示:

var defaultVar = "something";

function test (a, b=defaultVar) {
// ...
}

...然后根据我的需要更改defaultVar值。

var defaultVar = modification; 

事实上,我正在使用 Google 驱动器 API,我正在努力使它能够为第二个参数输入一个字符串值以进行回调。此回调将起到验证返回文件是否有效的搜索文件的作用(通过对名称值进行 bool 验证)。

因此,我的想法是通过传递他的名字并以这种方式检索文件数据来自动执行在 Google 驱动器上获取文件的过程。

我希望这种精度会有用。

这是我的 quickstart.js :

// (...Google authentication and all) ; 

var filename = "";
// enter a filename in the function by the way of filename
function listFiles (auth, filename = filename) {
const drive = google.drive({version: 'v3', auth});
drive.files.list({
pageSize: 50,
fields: 'nextPageToken, files(id, name)',
}, (err, {data}) => {
if (err) return console.log('The API returned an error: ' + err);
const files = data.files;
if (files.length) {
console.log('Files:');
files.map((file) => {
console.log(`${file.name} (${file.id})`);

// check if the file returns match the filename wished
displayFile(file);
if(`${file.name}` == filename ){
console.log("name found !");
const fileData = {
name : `${file.name}`,
id : `${file.id}`
};
return fileData;
}
});
} else {
console.log('No files found.');
}
});
}

listFiles(undefined, "test.md")

欢迎任何改进的想法。

最佳答案

在 ES2015 中加入了默认参数值,你可以为参数声明默认值,并且在调用时,如果你将 undefined 作为第一个参数,它将获得默认值:

function test(a = "ay", b = "bee") {
console.log(`a = ${a}, b = ${b}`);
}
test(); // "a = ay, b = bee"
test(1); // "a = 1, b = bee"
test(undefined, 2); // "a = ay, b = 2"
test(1, 2); // "a = 1, b = 2"

您可以通过测试 undefined 在 ES2015 之前的环境中手动执行类似的操作:

function test(a, b) {
if (a === undefined) {
a = "ay";
}
if (b === undefined) {
b = "bee";
}
console.log("a = " + a + ", b = " + b);
}
test(); // "a = ay, b = bee"
test(1); // "a = 1, b = bee"
test(undefined, 2); // "a = ay, b = 2"
test(1, 2); // "a = 1, b = 2"

关于javascript - 仅传递 javascript 中的第二个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50569300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com