简体   繁体   中英

Show html generated by using json2html at webpage [Django] [Python]?

Following is my code in view:

 RESULTS= {}
 for k in RESULTS_LIST[0].iterkeys():
   RESULTS[k] = list(results[k] for results in RESULTS_LIST)
 RESULTS.pop('_id',None)
 html_table =  json2html.convert(json=RESULTS)
 return render(request,'homepage.html',{'html_table':html_table})

here I am arranging a data fetched from Mongo Db in a JSON named as RESULTS and by using JSON2HTML package, it is successfully generated html table for data given in JSON. To embedd the html table code in a blank division at html page, I am doing:

<div>{{html_table}}</div>

But it failed to display the table on page. I have tried numerous ways to make it but didn't succeed. Please help me to resolve this issue. if any relevant example, you have done before , then please guide me in a right direction.

JS code is:

angular.module("homeapp",[])
.controller("homecontroller",['$http','$scope',function($http,$scope){
    $scope.search= {
        'keyword': null,
        'option': null,
        'startDate':null,
        'lastDate': null
    };
    $scope.search_info=function(){
        var search_req = {
            url:'/home',
            method:'POST',
            data:$scope.search
        }
        $http(search_req) //in case I dont want any response back or
        $http(search_req).success(function(response){     
            window.alert(response)
         }) //in case I need to check response
    }

}]);

I have got solution to this problem in an easy way via using js, which is given below and it worked.

    $http(search_req).success(function(response){     
        angular.element(".search_results").append(response);
     })

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM