как импортировать переменную django в html? - PullRequest
0 голосов
/ 25 февраля 2020

Мне нужно отправить данные из порта rs232 и отобразить их в виде графика, используйте java script https://canvasjs.com/html5-javascript-dynamic-chart/

Мне нужна помощь в импорте переменной views.py в мой html

views.py
import io
from django.http import HttpResponse
from django.shortcuts import render
from random import sample

    def about(read):
        import serial, time
        arduino = serial.Serial('COM3', 115200)
        time.sleep(2)
        read = arduino.readline()
        arduino.close()
        read = int(read)
        return HttpResponse(str(read), '')

Html

var updateChart = function (count) {
    count = count || 1;
    for (var j = 0; j < count; j++) {
<!-- this is where I try to read the variable -->
        yVal = href="{% 'about' %}"
        dps.push({
            x: xVal,
            y: yVal
        });
        xVal++;
    }

1 Ответ

0 голосов
/ 25 февраля 2020

напишите это в ваших точках зрения и укажите URL

from django.shortcuts import render
def indexw(request):
    context_variable = ''
    context = {"context_variable": context_variable}
    return render(request,'index.html', context)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...