AngularJS + jQuery Mobile

前端 未结 2 2054
有刺的猬
有刺的猬 2021-02-15 12:04

Are there other possibilities to style an AngularJS application in a mobile friendly way than CSS?

I am planning a mobile app and want to use A

相关标签:
2条回答
  • 2021-02-15 12:35

    There was already the question on SO to compare AngularJS and jQuery Mobile.

    And in the answer you can find some information - it is kind of further reading for you.

    And the arcticle jQuery Mobile and AngularJS Working Together should give you answe to your question. It has some advices, for example:

    Load jQM libs before AngularJS

    or

    Let jQM handle the URL routing

    etc.

    0 讨论(0)
  • 2021-02-15 12:57

    A very basic example:

    html:

    <body ng-app='myApp'>
        <div data-role="page" ng-controller='myCtrl'>
            <ul data-role="listview">
                <li ng-repeat='car in cars'><a href="{{car}}.html">{{car}}</a>
    
                </li>
            </ul>
        </div>
    </body>
    

    js:

    var app = angular.module('myApp', []);
    
    app.controller('myCtrl', function ($scope) {
        $scope.cars = [
            'acura', 'audi', 'BMW'
        ];
    });
    

    working demo: http://jsfiddle.net/eZdNm/

    The main problem with jQuery mobile and AngularJS is they both want to control page routing. You can find out more by searchng jQuery mobile and Angular in google.

    Yes, if you only want a ready to go / mobile friendly UI. I would suggest other more CSS based frameworks such as bootstrap.

    0 讨论(0)
提交回复
热议问题