当有人点击某个按钮时,我想在新窗口中打开一个文件(格式可能会有所不同,例如.docx,.pdf和.jpg)。但是,当我使用标头address1
时,文件所在的URL可以返回文件,或者在使用标头$('#profileDetailsPage').validate({
rules: {
firstName:{
required: true,
textonly: true
},
address1:{
required: false, // don't require this field
textonly: true
}
},
messages: {
firstname: "Please enter your first name",
address1: "Please enter only text"
},
submitHandler: function() {}
});
时它可以返回带有数据的JSON文件。
当我这样做时
{"Accept" : "application/octet-stream"}
我无法指定我是否获得了我的octet-stream或json。如何添加标题,或者确保我获得正确的文件?