我在模型上有文件字段,想按文件路径查找实例。
>>> path
u'docs/grinbeta_1.pdf'
>>> DocFileVersion.objects.filter(file=path).values_list('file', flat=True)
[u'docs/grinbeta_1.pdf', u'docs/Grinbeta_1.pdf']
我希望查询只返回第一个结果。
我在模型上有文件字段,想按文件路径查找实例。
>>> path
u'docs/grinbeta_1.pdf'
>>> DocFileVersion.objects.filter(file=path).values_list('file', flat=True)
[u'docs/grinbeta_1.pdf', u'docs/Grinbeta_1.pdf']
我希望查询只返回第一个结果。