在解析json和查看html源代码时,它显示了10K行

时间:2017-03-26 11:52:47

标签: json django python-3.x

我正在使用以下代码解析Django Views中的json:

def xyz(request):
    url =" https://tools.vcommission.com/api/coupons.php?apikey=952d164efe86ca9ec33a1fdac8e6d0b6d4c02c92f44062bf8b646ad04ebf8cdc "
    response = urllib.request.urlopen(url)
    data1 = json.loads(response.read())
    context = {"data1": data1}
    template = 'coupons/store/myntra.html'
    return render(request, template, context)

现在我在模板文件中使用此代码

 {% for item in data1 %}
     {% if item.offer_id == "1022" %}
         {{ item.coupon_title }} <br>
{% endif %}
{% endfor %}

所有代码都运行正常,但当我查看我的模板html源代码时,它超过10K行。 这需要更多的时间来加载 请提出一些建议。

0 个答案:

没有答案