gpt4 book ai didi

javascript - 在 Visual Studio 2015 中获取 JavaScript 函数表达式的智能感知

转载 作者:行者123 更新时间:2023-11-27 23:35:43 24 4
gpt4 key购买 nike

我在 Visual Studio 2015 中看到过示例,您可以在其中使用 JavaScript 函数声明的智能感知,如此处所述 https://msdn.microsoft.com/en-us/library/mt162307.aspx

例如:

/** @description Determines the area of a circle that has the specified radius parameter.
* @param {number} radius The radius of the circle.
* @return {number}
*/
function getArea(radius) {
var areaVal;
areaVal = Math.PI * radius * radius;
return areaVal;
}

给我们

enter image description here

我想知道的是,如果函数被分配给变量,是否可以使其工作

 /** @description Determines the area of a circle that has the specified radius parameter.
* @param {number} radius The radius of the circle.
* @return {number}
*/
var getArea = function(radius) {
var areaVal;
areaVal = Math.PI * radius * radius;
return areaVal;
}

这似乎不起作用,当在 Angular JS 项目上工作时,其中声明了很多函数,如 $scope.something = function() ,它会非常有用。

有人知道如何让它工作吗?

最佳答案

关于javascript - 在 Visual Studio 2015 中获取 JavaScript 函数表达式的智能感知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34155060/

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