http://jsfiddle.net/natecraft/jtMAq/3/
我不知道为什么我会收到此错误。谢谢你的帮助。
function accomplishmentController($scope) {
$scope.accomplishments = [{ name: "nate", count: 1 }];
}
答案 0 :(得分:1)
在jsfiddle左上角的“Frameworks& Extensions”框中切换到“no-wrap-in head”而不是onLoad。
FYI ......原因是使用onload将angular放在$(document).ready(function(){})的闭包内;将其置于封闭状态会导致各种问题。