Sand and Download operation on Postman, how to simulate the call of the front-end development interface

Sand and Download operation on Postman, how does the front-end development interface simulate calling

Mar.23,2022

     let link = document.createElement("a");
        link.style.display = "none";
        link.href = res.request.responseURL;
        document.body.appendChild(link);
        link.click();
        document.body.removeChild(link);

1, create a collection, to add the interface of your request to
clipboard.png

2,mockserver
clipboard.png

collection
clipboard.png

3okpostmanmockserver
clipboard.png
the uri is the resource uri you requested


has it been solved? Ask the same question

Menu