gpt4 book ai didi

django - Django模板中的正确缩进(没有猴子补丁)?

转载 作者:行者123 更新时间:2023-12-01 01:06:33 25 4
gpt4 key购买 nike

我想为我的独立应用程序生成由 Django 模板系统预处理的人类可读的 HTML 和 CSS 代码(适当缩进)。

我已经从 django.template.base 模块中的 NodeList 类修改了渲染方法。我的代码似乎工作正常,但我正在使用猴子补丁来替换旧的渲染方法。

在这种情况下,有没有更优雅的方法不使用猴子补丁?或者也许猴子修补是这里最好的方法?

我的代码如下所示:

'''
This module monkey-patches Django template system to preserve
indentation when rendering templates.
'''

import re

from django.utils.encoding import force_text
from django.utils.safestring import mark_safe
from django.template.loader import render_to_string
from django.template import Node, NodeList, TextNode
from django.template.loader_tags import (BlockNode, ConstantIncludeNode,
IncludeNode)


NEWLINES = re.compile(r'(\r\n|\r|\n)')
INDENT = re.compile(r'(?:\r\n|\r|\n)([\ \t]+)')


def get_indent(text, i=0):
'''
Depending on value of `i`, returns first or last indent
(or any other if `i` is something other than 0 or -1)
found in `text`. Indent is any sequence of tabs or spaces
preceded by a newline.
'''
try:
return INDENT.findall(text)[i]
except IndexError:
pass


def reindent(self, context):
bits = ''
for node in self:
if isinstance(node, Node):
bit = self.render_node(node, context)
else:
bit = node
text = force_text(bit)

# Remove one indentation level
if isinstance(node, BlockNode):
if INDENT.match(text):
indent = get_indent(text)
text = re.sub(r'(\r\n|\r|\n)' + indent, r'\1', text)

# Add one indentation level
if isinstance(node, (BlockNode, ConstantIncludeNode, IncludeNode)):
text = text.strip()
if '\r' in text or '\n' in text:
indent = get_indent(bits, -1)
if indent:
text = NEWLINES.sub(r'\1' + indent, text)

bits += text

return mark_safe(bits)


# Monkey-patching Django class
NodeList.render = reindent

最佳答案

修改模板层是可以的,但不是最佳的,因为它只是处理节点的呈现方式,而不是整个文档。我会推荐writing custom middleware让您的项目漂亮地打印 html 和 css 页面的呈现响应。

您的中间件需要实现 process_template_response用于查看和更新​​ SimpleTemplateResponse目的:

  • 查看 is_rendered属性以查看响应是否已呈现
  • 通过以下任一方式验证文档类型:
  • .html 末尾查找所需的文件类型( .csstemplate_name )属性
  • 看着content_type属性 (Django 1.5) 或可能 mimetype对于较旧的安装
  • 重新格式化并更新您呈现的文档以看起来华丽(Beautiful Soup 非常适合 HTML,但您需要选择您喜欢的 pretty-print 或自己滚动)。

  • 我认为中间件是一个更优雅的解决方案,因为它最终不会对您的文件进行词法更改。它与确定模板内容的逻辑完全分离(没有业务存在的地方)。最后,您希望您的所有 html 和 css 看起来都很棒,那么为什么首先将其与您的模板联系起来呢?

    关于django - Django模板中的正确缩进(没有猴子补丁)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18308626/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com