2015-01-02 31 views

答えて

4

はい。値は65,535文字に制限されています。これはMySQL TEXT列と同じです。 キーは30文字に制限され、名前空間は20文字に制限されています。

https://groups.google.com/forum/#!msg/shopify-app-discuss/os_Ll7PChGg/jpQgOKwSANEJ http://docs.shopify.com/api/metafield#create

+0

ありがとうございました。 – Sark

+1

参考のため、メタフィールドの説明フィールドは255文字に制限されています。 {'description':['長すぎます(最大255文字)']} – sansjoe

3

The key is limited to 30 characters, and the namespace has a maximum of 20 characters。値の長さについて

see here

The current implementation of a metafield value field is a MySQL TEXT column... a TEXT column has a maximum length of 65535 (2^16 - 1) characters. I’m not encouraging you to start storing enormous blobs, but the limit is pretty big.

また、あなたは(herehereを参照)を持つことができますどのように多くのmetafieldsに制限はありません。

+0

詳細な説明をありがとうございます。 – Sark