Go의 Google App Engine Datastore에서 동적 속성을 구현하는 방법은 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-23 22:02:11
원래의
389명이 탐색했습니다.

How to Implement Dynamic Properties in Go's Google App Engine Datastore?

Google App Engine Datastore의 Go에서 동적 속성 획득

Python의 App Engine에서 Expando 모델은 사전 선언 없이 항목에 동적 속성을 할당하는 편리함을 제공합니다. Go에서 이 기능을 어떻게 복제할 수 있나요?

동적 속성 구현

Go에서 동적 속성을 구현하는 핵심은 PropertyLoadSaver 인터페이스입니다. 이를 통해 엔터티는 속성을 저장하기 전에 동적으로 구성할 수 있습니다.

다행히도 AppEngine 플랫폼은 PropertyLoadSaver 인터페이스를 구현하는 PropertyList 유형을 제공합니다. PropertyList를 사용하면 동적 속성을 목록에 추가하기만 하면 쉽게 추가할 수 있습니다.

동적 속성으로 엔터티 저장

예를 살펴보겠습니다.

import (
    "context"
    "time"

    datastore "google.golang.org/appengine/datastore"
)

func main() {
    ctx := context.Background()

    props := datastore.PropertyList{
        datastore.Property{Name: "time", Value: time.Now()},
        datastore.Property{Name: "email", Value: "example@domain.com"},
    }

    k := datastore.NewIncompleteKey(ctx, "DynEntity", nil)
    key, err := datastore.Put(ctx, k, &props)
    if err != nil {
        // Handle the error
    }
    // ...
}
로그인 후 복사

이 코드는 "time"과 "time"이라는 두 가지 동적 속성을 사용하여 "DynEntity"라는 엔터티를 생성합니다. "email."

동적 엔터티에 대한 사용자 정의 유형 사용

동적 엔터티에 대한 추가 제어가 필요한 경우 사용자 정의 유형에 PropertyLoadSaver 인터페이스를 구현할 수 있습니다. 예를 들어 지도를 래핑하는 사용자 정의 DynEnt 유형을 정의해 보겠습니다.

type DynEnt map[string]interface{}

func (d *DynEnt) Load(props []datastore.Property) error {
    // ... Your implementation
}

func (d *DynEnt) Save() (props []datastore.Property, err error) {
    // ... Your implementation
}
로그인 후 복사

이제 다음과 같이 DynEnt를 사용할 수 있습니다.

import (
    "context"
    "time"

    datastore "google.golang.org/appengine/datastore"
)

func main() {
    ctx := context.Background()

    d := DynEnt{"email": "example@domain.com", "time": time.Now()}

    k := datastore.NewIncompleteKey(ctx, "DynEntity", nil)
    key, err := datastore.Put(ctx, k, &d)
    if err != nil {
        // Handle the error
    }
    // ...
}
로그인 후 복사

위 내용은 Go의 Google App Engine Datastore에서 동적 속성을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿