我在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;
}


给我们

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

我想知道的是,是否有可能将此功能分配给变量

 /** @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(),这将非常有用。

有人知道一种方法可以使此工作正常吗?

最佳答案

仔细看看https://www.nuget.org/packages/AngularJS.Intellisense/怎么样。

09-20 03:23