Angularjs在Plunker的jQloud实验问题

时间:2015-04-11 17:47:30

标签: angularjs plunker

对于某些实验,我需要将此Angular jQcloud放在Plunker上。我已经提供了插件提供的所有必要代码,仍然不明白为什么文本云没有来自plunker。你能告诉我我错过了什么吗?

HTML:

<html ng-app="app" ng-controller="myCtrl">
  <body>
    <jqcloud words="words" width="500" height="350" steps="7"></jqcloud>  
  </body>
</html>

JS:

var app = angular.module('app', ['angular-jqcloud']);

app.controller('myCtrl', function ($scope) {
 $scope.words = [/* ... */];
});

Plunker link

1 个答案:

答案 0 :(得分:0)

Here it is

您忘记加载jquery和angular-jqcloud脚本。尽可能使用angular.js而不是angular.min.js,在不支持源映射的调试器(例如Firebug)中更有意义。不要将角度指令添加到<html>,Plunker不喜欢它。 Devtools是您有史以来最好的朋友,尤其是控制台和网络选项卡。