八 Django 1.5.4 Web Service JSON XML

一.JSON

1.1.views.py

# Create your views here.
from django.http import HttpResponse
from demo.apps.ventas.models import producto
# Integramos la serializacion de los objetos
from django.core import serializers



def wsProductos_view(request):
        data = serializers.serialize("json",producto.objects.filter(status=True))
        # Retorna la informacion en formato json
        return HttpResponse(data,mimetype='application/json')

1.2.urls.py

1.3.效果如图

二.XML

只需将json替换成xml

八 Django 1.5.4 Web Service JSON XML_第1张图片

效果如图

八 Django 1.5.4 Web Service JSON XML_第2张图片

你可能感兴趣的:(django)