0

我正在尝试访问共享 Windows 文件夹中的文件(例如:pdf 文件)。
(使用 FILE 协议)

file://myShareServer/path/to/myFile.pdf

jquery ajax 返回:

 XMLHttpRequest cannot load file://myShareServer/path/to/myFile.pdf. Cross origin requests are only supported for HTTP.

我如何使用 jquery javascript 访问此文件

ps:授予对服务器的所有访问权限。
我在服务器端使用 ASP.NET MVC4

编辑:我正在使用 PDF.JS 库来运行 pdf 文件(问题就在这里)

4

1 回答 1

0

您可以像对待计算机上的任何其他文件一样对待它,并将其设为链接,因为链接没有像 XMLHttpRequests 这样的跨源策略。

<a href="file://myShareServer/path/to/myFile.pdf">Download the file</a>
于 2013-04-10T17:48:40.210 回答