weixin_33709364 2018-10-18 20:44 采纳率: 0%
浏览 440

api返回文件C#

my question is I am connecting with an api and this give me a file response.

this is the result file in my api

result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");

return result;

and i use this ajax to call the api

        $.ajax({
        type: 'GET',
        url: "http://localhost/api/Piezas/Imagen/" + @Model.PiezaId,
        contentType: "application/octet-stream",
        success: function (datos) {
            //$("#image").attr("src", "data:image/png;base64," + datos);
        }
    });

that file is an image.the question is how can i converted to used or assigned to an img src="" maybe using jquery.

  • 写回答

0条回答 默认 最新

    报告相同问题?