blank
报错 PEP 8: expected 2 blank lines, found 1
PyCharm 提示:PEP 8: expected 2 blank lines, found 1 类或方法前需要空两行 , max_length=128, null=True, blank=True)中的_('ID')
2023/7/6 15:08:30_('ID') 是一个常见的约定用法,它是 Django 框架中的翻译函数。该函数通常用于国际化(i18n)和本地化(l10n)方面的目的。 在 Django 中,为了支持多语言和国际化,开发者需要将所有的文本字符串标记为可翻译的。而 _() 函数就是用来标记这些文 ......
a标签 链接 target=”_blank” 为什么要增加 rel=”noopener noreferrer”
在<a></a>中使用target="_blank" 那么会得到以下错误提示: Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://mathiasbynens.github.i ......