朱丽叶

导航

postman中 预览返回的base64图片

//result中的数据是返回的图片信息
{
    "success": true,
    "message": "",
    "code": 0,
    "result": "data:image/jpg;base64,/9j/4AAQSk............",
    "timestamp": 1648630157882
}

// 将接口返回数据赋值处理
var data = {
    response:pm.response.json(),
    imgsrc: pm.response.json().data[0].invoiceAttach
}

// html 模板字符
// 如果base64代码中已包含“data:image/jpg;base64,”,需要在base64代码前面加上,如下:
var template = `<html><img src="{{response.result}}" /></html>`;

// 设置 visualizer 数据。传模板并解析对象
pm.visualizer.set(template, data);

posted on 2024-09-25 09:47  朱丽叶  阅读(96)  评论(0编辑  收藏  举报