VersionOne - 新的query.v1是否支持提取附件? 如果是这样,有人可以提供一个例子吗?
此query.v1刚刚进入VersionOne Summer 2013(版本13.2)
https://community.versionone.com/Developers/Developer-Library/Recipes/Tour_of_query.v1
答案 0 :(得分:1)
是
from: Attachment
select:
- Name
- ContentType
- Content
Blob字段(内容)以Base64
的形式返回[
[
{
"_oid": "Attachment:1783",
"Name": "Attachment A",
"ContentType": "text/plain",
"Content": "VGhpcyBpcyB ...base64 encoded bytes here... hdHRhY2htZW50"
}
]
]