gpt4 book ai didi

javascript - 使用显式和隐式返回函数返回函数的区别

转载 作者:行者123 更新时间:2023-11-30 11:16:04 25 4
gpt4 key购买 nike

<分区>

我有一个在 Node 应用程序中运行的有效 javascript 代码片段。如下定义为数据库层的db_location被路由使用。

const db_location = {
getLocations:() =>
fetch(`${p_conf.SERVER_URL}/parse` + '/classes/GCUR_LOCATION', { method: 'GET', headers: {
'X-Parse-Application-Id': 'APPLICATION_ID',
'X-Parse-REST-API-Key': 'restAPIKey'
}}).then(res1 => res1.json())
};
module.exports = db_location

db_location 定义了一个使用隐式返回的 getLocations 函数。但是,如果我将它转换为传统的显式返回,它就不再起作用了。

const db_location = {
getLocations: function() {
fetch(`${p_conf.SERVER_URL}/parse` + '/classes/GCUR_LOCATION', { method: 'GET', headers: {
'X-Parse-Application-Id': 'APPLICATION_ID',
'X-Parse-REST-API-Key': 'restAPIKey'
}}).then(res1 => res1.json())
}
};
module.exports = db_location

我很难理解这是否可转换以及显式返回与隐式返回有何不同?

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