0

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

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

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

1 回答 1

1

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

仅供参考...原因是使用 onload 将 angular 放入 $(document).ready(function() {}); 的闭包内。并且将其封闭会导致各种问题。

于 2013-10-13T21:29:55.003 回答