I'm assuming your current application is not a SPA (single page
application).
Django is a good option for serving data for a mobile app, you just need to
develop an API. Django default behaviour is to serve full html pages, but
when you are working with mobile apps you are only interested in the actual
data from your django application, therefore a JSON (or other format you'd
like to use) it's a better choice. There are a some libs that will help you
developing an API, the most used ones are: Tastypie and Django REST
framework (DRF). I really like working with DRF, it's a very powerful tool,
very popular and with an active community.

http://django-rest-framework.org/

Also, in my company, when we are doing applications that will interact with
mobile devices, we do all the backend logic in an API and for the frontend,
we do a SPA using Angular.js. This way we keep all the logic in a single
place, accelerating the backend development and reducing the amount of code
needed to maintain.

On Mon, Apr 13, 2015 at 2:45 PM, 백병화 <barkb...@gmail.com> wrote:

> Hi All
> I'm using
> django+python+mariadb+mysql+redis+html5+css3+javascript+jquery+nginx 4 web
> development
> and I'm wondering cross-platform as Phonegap or titanium for mobile apps.
> Colud you plz advise about pros/cons of them(In combination with
> Django+Python)?
> Thank you for reading ma article.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/cdb48ad5-8a01-4362-84a2-5233407c9405%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/cdb48ad5-8a01-4362-84a2-5233407c9405%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 


*Filipe Ximenes*+55 (81) 8245-9204

*Vinta Software Studio*http://www.vinta.com.br

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA-QWB1umJ9QvGA68365g_78Q6qfoQsdwUTMMsAGoQE4%2BMnmXw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to