gpt4 book ai didi

javascript - 我可以在 Firebug 中使用 console.log() 查看回调函数的结果吗?

转载 作者:行者123 更新时间:2023-12-02 20:44:39 25 4
gpt4 key购买 nike

使用下面的示例,是否可以将回调函数的结果发送到控制台,即返回的值?

rows.sort(function(a, b) {
if(a.sortKey < b.sortKey) return -sortDirection;
if(a.sortKey > b.sortKey) return sortDirection;
return 0;
});

我将使用什么作为参数:console.log(?)

最佳答案

您始终可以在返回之前进行日志记录,并进行重构以支持轻松日志记录。除此之外,排序函数会丢失返回值。

rows.sort(function(a, b) {
var returnVal = 0;
if(a.sortKey < b.sortKey) returnVal = -sortDirection;
else if(a.sortKey > b.sortKey) returnVal = sortDirection;

console.log( returnVal );
return returnVal;
});

关于javascript - 我可以在 Firebug 中使用 console.log() 查看回调函数的结果吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1556467/

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