gpt4 book ai didi

javascript - 如何在 JSDoc 中记录解构参数?

转载 作者:行者123 更新时间:2023-12-05 06:23:23 28 4
gpt4 key购买 nike

async function userInformation({ userId, token }) {
const body = {
user: userId
};

const headers = {
Authorization: `Bearer ${token}`,
'Content-Type': 'application/x-www-form-urlencoded'
};

const url = 'https://example.com/api/users';

const data = await axios.post(url, headers, qs.stringify(body));

return data;
}

考虑这段代码我应该如何为此功能编写 jsdoc?如何确保参数类型在 jsdoc 中定义?

最佳答案

这并不完美,因为它是一个 open issue但你能做的最好的是:

/**
* @param {{ userId: number, token: string }} info
* @param {string} info.userId this description appears
* @param {number} info.token this also appears on hover
*/
async function userInformation({ userId, token }) {
const body = {
user: userId
};

const headers = {
Authorization: `Bearer ${token}`,
'Content-Type': 'application/x-www-form-urlencoded'
};

const url = 'https://example.com/api/users';

const data = await axios.post(url, headers, qs.stringify(body));

return data;
}

你最终写了两次信息,但它似乎确保 VSCode 知道发生了什么。

关于javascript - 如何在 JSDoc 中记录解构参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58410776/

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