python
# views.py
from django.shortcuts import render
import json

def my_view(request):
    json_data = {'key': 'value', 'array': [1, 2, 3]}
    return render(request, 'my_template.html', {'json_data': json_data})