gpt4 book ai didi

c# - 将各种数据一起发布的最佳方式(Web API)

转载 作者:可可西里 更新时间:2023-11-01 16:23:23 26 4
gpt4 key购买 nike

我正在使用 ASP.NET Web API,我正在尝试找出发布 PictureData 对象实例的最佳方式。

public class PictureData
{
public Stream Data { get; set; }
public PictureType Type { get; set; }
public string EntityId { get; set; }
}

有没有办法将对象转换为流并作为流发布,或者我应该保留所有属性字符串和整数并将其作为 JSON 发布?什么是最好的方法?

最佳答案

将其作为流发布(类似于 application/x-www-form-urlencoded 的表单发布)。 application/x-www-form-urlencoded or multipart/form-data?建议您应该使用 multipart/form-data 但两者都值得一试。

关于c# - 将各种数据一起发布的最佳方式(Web API),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11932745/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com