我正在尝试使用以下JavaScript代码将文件下载到客户端:
window.location = InsightRoute + "GetOrderXML?orderNumber=" + txtOrderNoVal
如果该文件可用,则它将下载到客户端计算机。但是问题是,如果没有文件可供下载,
只会重定向到空白页
http://mysite/GetOrderXML?orderNumber=1
最佳答案
您应该在重定向之前检查文件是否可下载,例如:
if (sdpInsightRoute && txtOrderNoVal)
window.location = sdpInsightRoute + "GetOrderXML?orderNumber=" + txtOrderNoVal
这样,如果变量
txtOrderNoVal
为undefined
,则不会发生重定向。关于javascript - Window.location文件下载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57493332/