โปรเจกต์ Django HStore

โมโนรีโปสำหรับระบบนิเวศ Django HStore การรองรับ PostgreSQL hstore ที่ใช้งานง่ายสำหรับ Django admin

แพ็กเกจ

django-hstore-widget

วิดเจ็ตแบบกำหนดเองสำหรับการแก้ไขข้อมูล hstore ใน Django admin พัฒนาด้วย Lit และ TypeScript เพื่อสร้างแก้ไขข้อมูลแบบคีย์-ค่าที่ตอบสนองรวดเร็ว

pip install django-hstore-widget
https://pypi.org/project/django-hstore-widget/
django-hstore-field

HStoreField ที่ติดตั้งได้เลยพร้อมวิดเจ็ตที่เชื่อมต่ออัตโนมัติ ไม่ต้องการการกำหนดค่าสำหรับโปรเจกต์ใหม่

pip install django-hstore-field
https://pypi.org/project/django-hstore-field/

เริ่มต้นอย่างรวดเร็ว

สำหรับโปรเจกต์ใหม่ ให้ใช้ django-hstore-field:

# models.py
from django.db import models
from django_hstore_field import HStoreField

class Product(models.Model):
    name = models.CharField(max_length=100)
    metadata = HStoreField()

วิดเจ็ตเชื่อมต่ออัตโนมัติ ไม่ต้องการการกำหนดค่าฟอร์ม

เนื้อหา

คู่มือผู้ใช้

ข้อมูลทางเทคนิค

คู่มือนักพัฒนา

บริบท LLM