jquery-pjax icon indicating copy to clipboard operation
jquery-pjax copied to clipboard

If download a file, pjax will happen.

Open fukeric opened this issue 7 years ago • 1 comments

If download a file, pjax will happen.

  // Prefer X-PJAX-URL header if it was set, otherwise fallback to
  // using the original requested url.
  var serverUrl = xhr.getResponseHeader('X-PJAX-URL')
  obj.url = serverUrl ? stripInternalParams(parseURL(serverUrl)) : options.requestUrl

+  if (!xhr.getResponseHeader('Content-Type').match(/^text\/html/i))
+    return obj;

So I solved it in the same way as above.

fukeric avatar Mar 14 '18 08:03 fukeric

if the file is in the form of an image, it doesn't download it, but displays it

how to be downloaded?

anandiamy avatar Oct 11 '18 03:10 anandiamy