gpt4 book ai didi

python - Django 模板和 MongoDB _id

转载 作者:可可西里 更新时间:2023-11-01 09:08:56 26 4
gpt4 key购买 nike

Variables and attributes may not begin with underscores: 'value._id'

如何在 Django 模板中引用从 MongoDB 获取的项目的 _id

最佳答案

Custom template filter会有所帮助:

from django import template

register = template.Library()

@register.filter(name='private')
def private(obj, attribute):
return getattr(obj, attribute)

你可以这样使用它:

{{ value|private:'_id' }}

关于python - Django 模板和 MongoDB _id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24936601/

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