I m 创建网络服务,接收其他用户“排列”的XPS文件。 因此,我想把由此产生的卷宗合并为一个答复:
"Files":
[
{"Id": 1, "ContentType": "application/vnd.ms-xpsdocument", "Data": "base64-encoded data of file here" },
{"Id": 2, "ContentType": "application/vnd.ms-xpsdocument", "Data": "another files base64 data"}
]
这是一种可怕的想法吗? 我是否应当担心? 由于多台服务器将投票选举这一意向书,我真的希望把发出的请求减少到最低限度。 如果能更好地做到这一点,我确实赞赏任何建议。
FWIW, the methods I was Planning to use to base64-encode/decode the files was taken from this question.