我正在使用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;
});
}
我做错了什么?
由于