多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# CustomRequestFormat `Get|Let {String}` 使用在[`WebHelpers.RegisterConverter`](RegisterConverter.md)中注册的转换器将`Body`转换为字符串并设置`Content-Type`标头。 (自动将`RequestFormat`设置为`WebFormat.Custom`) ~~~ WebHelpers.RegisterConverter "csv", "text/csv", "Module.ConvertToCSV", "Module.ParseCSV" Dim Request As New WebRequest Request.CustomRequestFormat = "csv" '// -> Content-Type: "text/csv" '// -> Body converted to string with Module.ConvertToCSV ~~~