1

我正在尝试使用文件 URI 方案通过邮递员发送 GET 请求。一个例子:

file:///absolute/path/to/file.txt

该请求在任何浏览器中都能正常工作,但postman失败并显示消息:

无法得到任何回应

这似乎是连接到的错误file:///absolute/path/to/file.txt

有什么方法可以postman使用文件 URI?

4

2 回答 2

2

Postman 不支持文件 URI,因为 Chrome 应用平台不允许直接访问文件。

不过,自己启动一个小型 HTTP 服务器应该很容易。如果您使用的是 Mac/Linux,则可以使用 Python 在目录中提供文件:

$ cd /path/to/directory/
$ python -m SimpleHTTPServer 1234

然后您可以访问

http://localhost:1234/filename

这将提供文件。

于 2016-01-11T08:05:49.800 回答
0

好答案

我不熟悉SimpleHTTPServer,所以我改用live-server

  1. 我按照2. Install and Run a Local Web Server中的说明安装live-server

  2. 然后:

    cd /path/to/(myJSONfile.json)
    live-server <myJSONfile.json>

      JSON 文件在我的默认网络浏览器中打开。

  1. 最后,在 Postman 中,我发出了一个普通的GET请求,但在 address 上   http://127.0.0.1:8080

这一切都按预期工作。

于 2021-04-28T16:15:35.403 回答