错误:参数'achievementmentController'不是函数,未定义

时间:2013-10-13 21:23:57

标签: html css angularjs controller

http://jsfiddle.net/natecraft/jtMAq/3/

我不知道为什么我会收到此错误。谢谢你的帮助。

function accomplishmentController($scope) { 
  $scope.accomplishments = [{ name: "nate", count: 1 }];
} 

1 个答案:

答案 0 :(得分:1)

在jsfiddle左上角的“Frameworks& Extensions”框中切换到“no-wrap-in head”而不是onLoad。

FYI ......原因是使用onload将angular放在$(document).ready(function(){})的闭包内;将其置于封闭状态会导致各种问题。