在AngularJS $ http.get之后,JQuery Mobile CSS不适用

时间:2013-08-14 14:59:46

标签: css ajax html5 angularjs

我正在使用jQuery Mobile,Bootstrap和AngularJS创建一个应用程序,一切正常,直到我使用AngularJS获取$http.get请求的数据,然后jQuery Mobile CSS不适用于列表。

以下是代码:

HTML

<ul data-role="listview" ng-controller="ejemplo">
    <li data-theme="a" ng-repeat="item in items"><a href="#">{{item.nombre}}</a></li>
</ul>

JS:

function ejemplo($scope, $http) {
   $http.get('http://balonmano100.p.ht/app/competiciones.php')
       .success(function(data) {
           $scope.items=data;
       });
 }

我做错了什么?

由于

0 个答案:

没有答案