第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使給定操作接受給定內(nèi)容類型的屬性?

使給定操作接受給定內(nèi)容類型的屬性?

C#
慕姐4208626 2022-12-31 13:07:32
是否可以在 ASP.NET Core MVC 中僅更改某些操作以接受plain/text或application/xml(即content-type)使用屬性而不更改默認輸入格式化程序?
查看完整描述

1 回答

?
慕后森

TA貢獻1802條經(jīng)驗 獲得超5個贊

開箱即用的 ASP.NET Core 僅支持 JSON 或 XML。只要您設(shè)置了負載的內(nèi)容類型,無論控制器操作如何,它都應(yīng)該正確反序列化。


如果你想要支持任何其他內(nèi)容類型(例如文本/純文本),你可以創(chuàng)建一個自定義格式化程序


直接取自 aspnet 示例repo的示例:


public class TextPlainInputFormatter : TextInputFormatter

{

    public TextPlainInputFormatter()

    {

        SupportedMediaTypes.Add("text/plain");

        SupportedEncodings.Add(UTF8EncodingWithoutBOM);

        SupportedEncodings.Add(UTF16EncodingLittleEndian);

    }


    protected override bool CanReadType(Type type)

    {

        return type == typeof(string);

    }


    public override async Task<InputFormatterResult> ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding)

    {

        string data = null;

        using (var streamReader = context.ReaderFactory(context.HttpContext.Request.Body, encoding))

        {

            data = await streamReader.ReadToEndAsync();

        }

        return InputFormatterResult.Success(data);

    }

}


查看完整回答
反對 回復(fù) 2022-12-31
  • 1 回答
  • 0 關(guān)注
  • 86 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號