On May 15, 2018 10:38:06 AM CDT, gomahesh5@gmail.com wrote:
I am new to Django started developing the application but got a problem in retrieving the data from already existing data which looks like this below.{"_id":"5ad72e80bdd7ad184031ab2d","name":"john","country":"usa","place":"xyz"}{"_id":"5ad72ec6bdd7ad184031ab2e","name":"ron","country":"canada","place":"ABC"}The code in the django look like thisfrom mongoengine import *from django.shortcuts import renderfrom django.contrib.auth.models import Userclass demo_data(DynamicDocument):meta = {'index_background':True,'collection':'demo_data',}name = StringField(max_length=100)country = StringField(max_length=100)place = StringField(max_length=150)connone = connect(host='mongodb://myusername:mypassword@example.com/databasename?replicaSet=rs0')def test_extract(request):connone = demo_data()dt_view = connone._dataprint(dt_view)return render(request,"extract.html",{"dt":dt_view})My code in extract.html<html><body><p>the data relating to collection {{dt}}</p></body></html>And the output which i got after running is thisthe data relating to collection {'name': None, 'country': None, 'place': None, 'id': None}Can anyone please help me out from this situation would be appreciated
No comments:
Post a Comment