我寫的採用了棱角分明的1.4.8代碼一些非常簡單的線條和我得到角1.4.8:角模塊/ NG-應用程序錯誤
Error: [$injector:nomod] Module 'a' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
遵循了這一環節,因爲我也使用相同的角度的版本。 Angular js 1.4.8 Injection module error
<div ng-app='a'>
<div ng-controller="myctrl as ctrl">
<input type="text" ng-model="ctrl.name"/>
<input type="submit" ng-click="call();"/>
</div>
</div>
var a=angular.module('a',[]);
a.controller("myctrl",['$scope',function($scope){
var ctrl=this;
$scope.call=function(){
alert(ctrl.name);
};
}]);
這裏是鏈接到我的小提琴。 https://jsfiddle.net/rakotkar/mumv3uwf/4/
獲得幫助的jsfiddle問題在計算器上感覺像是在浪費時間。 JSFiddle是一個沙盒,不是在某處開發代碼 – Phil
[爲什麼我會在JSFiddle中找不到錯誤模塊?](https:// stackoverflow。com/questions/44890420/why-i-get-error-module-not-available-in-jsfiddle) – Vivz