VS Intellisense不使用JavaScript库预测事物

时间:2016-05-16 14:57:39

标签: javascript visual-studio intellisense

当我使用普通脚本包含JavaScript库时,有没有办法让Visual Studio(2015)的Intellisense工作?

我的设置:

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset="utf-8" />
    <!-- the library I want Intellisense to work with -->
    <script src="libs/three/build/three.min.js"></script> 
</head>
<body>
    <h1>Hello</h1>
    <script type="text/javascript" src="main.js"></script>
</body>
</html>

在我的main.js中,我想使用我指定的三个库:

var scene = new THREE.Scene();

当我输入THREE.时,我想在我开始输入Scene时看到可用属性列表。

我的设置是否错误 - 我需要某种配置文件吗?或者JS不存在此功能吗?

1 个答案:

答案 0 :(得分:0)

我找到答案here, in another SO question.去投票而不是投票。

对于阅读此内容的其他人:在外部JavaScript文件的顶部包含此行:

/// <reference path="myLibrary.js"/>

所以在我的情况下,在我的main.js中,我会有

/// <reference path="libs/three/build/three.min.js"/>