我見過他們使用以下語法嵌套回調某些API文檔中:這是在Javascript中縮進嵌套回調的推薦方式嗎?
webmap = new WebMap({
portalItem: {
id: "id"
}
})
.load()
.then(function(instance){
console.log(instance);
view = new MapView({
map: instance,
container: "map"
})
.then(function(instance){
})
;
})
;
;
這是推薦的方式,語法在Javascript中嵌套調用?
另外,爲什麼?作爲來自Python的人,這似乎很奇怪,也沒有必要。
如果有人好奇,我見過identation這種方式主要是在語義UI的例子https://semantic-ui.com/modules/sidebar.html#/examples
我建議你使用風格指南,因爲代碼格式是一個主觀的話題,不能有堆棧溢出的規範答案。人們會根據他們的意見而不是回答質量進行投票。 FWIW我從來沒有見過任何人格式化他們的代碼。 – 4castle