Angularjs Plunker 的 jQloud 实验性问题

Angularjs jQloud experimental issue at 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

Here it is.

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