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