我是AngularJs的新手,這是我的第一個代碼。我發現了一個在線 教程其中模塊被聲明這樣Angularjs。模塊沒有顯示在intellisense
變種的myapp = angular.module( '對myApp',[])
當I型角。 ,我無法將.module顯示在我的智能感知 中,而是獲取$$ 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>
什麼都沒有顯示出來 – Sajeetharan
當我輸入角度時,.module沒有出現在intellisense中。 ... – user2320476