本文介紹 django.contrib.postgres.search.TrigramDistance
的用法。
聲明
class TrigramDistance(expression, string, **extra)
接受字段名稱或表達式,以及字符串或表達式。返回兩個參數之間的三元組距離。
使用示例:
>>> from django.contrib.postgres.search import TrigramDistance
>>> Author.objects.create(name='Katy Stevens')
>>> Author.objects.create(name='Stephen Keats')
>>> test = 'Katie Stephens'
>>> Author.objects.annotate(
... distance=TrigramDistance('name', test),
... ).filter(distance__lte=0.7).order_by('distance')
[<Author: Katy Stevens>, <Author: Stephen Keats>]
相關用法
- Python Django TrigramSimilarity用法及代碼示例
- Python Sympy Triangle.is_right()用法及代碼示例
- Python Sympy Triangle.is_isosceles()用法及代碼示例
- Python Django Trim用法及代碼示例
- Python Sympy Triangle.is_scalene()用法及代碼示例
- Python Django TransactionNow用法及代碼示例
- Python Django TransactionTestCase.reset_sequences用法及代碼示例
- Python Django TransactionTestCase.assertNumQueries用法及代碼示例
- Python Django TransactionTestCase.fixtures用法及代碼示例
- Python Thread join()用法及代碼示例
- Python Django TodayArchiveView用法及代碼示例
- Python Tensorflow asin()用法及代碼示例
- Python Thread run()用法及代碼示例
- Python TextBlob.correct()用法及代碼示例
- Python Tuple len()用法及代碼示例
- Python Tensorflow math.accumulate_n()用法及代碼示例
- Python Tensorflow cosh()用法及代碼示例
- Python Tuple min()用法及代碼示例
- Python Thread setName()用法及代碼示例
- Python TextCalendar prmonth()用法及代碼示例
- Python Tensorflow sin()用法及代碼示例
- Python Tuples轉Dictionary用法及代碼示例
- Python Django TestCase.setUpTestData用法及代碼示例
- Python Tensorflow acos()用法及代碼示例
- Python Tuple轉integer用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.postgres.search.TrigramDistance。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。