我在移动设备上使用JSF下载文件时遇到了问题。
只要我使用桌面浏览器,一切正常,但一旦我更改为移动设备,我就会得到一个包含源代码的.html文件。
这是我的下载方法
<h:commandButton value="fileDownload">
<p:fileDownload value="#{controller.drawing}"
contentDisposition="attachment"></p:fileDownload>
<f:ajax disabled="true" />
</h:commandButton>
这是我的downloadButton
<input type="text" name="attributeIndex[]" id="brand" class="form-control" placeholder="brand">
<select name="attributeIndex[]" id="color" class="form-control">
<option value="92">Aero</option>
<option value="277">Aluminum</option>
<option value="91">Amber</option>
</select>
我看过这个same issue,但它无法解决我的问题
现在我不知道如何解决这个问题