我是AngularJs的新手,这是我的第一个代码。我在网上找到了 教学模块声明如此
var myapp = angular.module('myApp',[])
当我键入角度。 ,我无法让.module出现在我的intellisense中 但是要获得$$ modulename。
我做错了吗?当我输入模块时,代码实际运行。
以下是我的代码。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Practicing Angular</title>
<script src="../Scripts/angular.min.js"></script>
</head>
<body>
<h1>Hello This is the first page</h1>
<div ng-app="myApp" ng-controller="myCtrl">
First Name: <input type="text" ng-model="firstName"><br>
Last Name: <input type="text" ng-model="lastName"><br>
<br>
Full Name: {{firstName + " " + lastName}}
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function ($scope) {
$scope.firstName = "John";
$scope.lastName = "Doe";
});
</script>
</body>
</html>
答案 0 :(得分:0)
答案 1 :(得分:0)
下载angular.intellisense.js并将其放入您的&#34;程序文件(x86)\ Microsoft Visual Studio 12.0 \ JavaScript \ References&#34;文件夹中。
使用Nuget包管理器从www.angularjs.org
安装AngularJS现在添加对angular.js或angular.min.js的引用,您的视觉工作室应该更好地支持AngularJS,您应该开始看到intellisense。