我们开发了 MVC 应用程序,这里我们有一个功能导出到 HTML。当用户单击“导出到 html”按钮时,我们已经生成了具有该用户名的 HTML 文件。此 html 文件包含发票详细信息。我们只为一个用户维护一个文件,单独替换发票信息,而不是创建新文件。
我们在controller类中生成了HTML文件并上传到服务器,下面的jQuery查看生成的html文件。
if (dropDownSelect == 'To HTML File') {
$.ajax({
type: "POST",
url: "Appointment/CreateHTMLInvoice/", //here we have called the controller and create the html file.
cache: false,
data: {
AppID: ShareAppID,
CusIDs: SelectedCusIDs,
CustFlag: AllCustomerFlag
},
success: function (result) {
if (result != null) {
window.open('', $.now()).location.href = result; ///After successfully created the HTML file, here is the code to view the html file
}
},
error: function (xhr, status, error) {
alert('Error ' + xhr.responseText);
}
});
}
第一次下载正确的文件,从第二次下载前一个文件而不是新文件,直到清除浏览器缓存。我已经检查了服务器文件,这个文件是新文件,我们不知道为什么应用程序一次又一次地下载我们第一次生成的同一个文件。
请建议清除缓存。我们需要为每次点击查看新文件。