Django Template Variables and Javascript

后端 未结 15 2355
误落风尘
误落风尘 2020-11-22 05:59

When I render a page using the Django template renderer, I can pass in a dictionary variable containing various values to manipulate them in the page using {{ myVar }}

15条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 06:25

    A solution that worked for me is using the hidden input field in the template

    
    

    Then getting the value in javascript this way,

    var myVar = document.getElementById("myVar").value;
    

提交回复
热议问题