标签: django python-3.x django-templates google-cloud-storage
我已经创建了一个html文件,并将其上传到了Google云媒体位置,我正尝试使用以下代码获取该html内容,但我无法获取模板对象。
from django.template import loader template_name = 'http://storage.googleapis.com/media/templates/real.html' template = loader.get_template(template_name)
有什么方法可以获取django模板对象吗?