nagose commited on
Commit
0d9c490
·
verified ·
1 Parent(s): b30e091

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +10 -4
index.js CHANGED
@@ -44,8 +44,14 @@ app.get('/', (req, res) => {
44
  a.href = url;
45
  // 从Content-Disposition头中提取文件名
46
  const contentDisposition = response.headers.get('Content-Disposition');
47
- const fileName = contentDisposition.match(/filename="(.+)"/)[1];
48
- a.download = fileName;
 
 
 
 
 
 
49
  document.body.appendChild(a);
50
  a.click();
51
  window.URL.revokeObjectURL(url);
@@ -99,8 +105,8 @@ app.post('/upload', upload.single('file'), async (req, res) => {
99
  //const outputFileName = encodeURIComponent(hash + '-pic.zip.jpg');
100
 
101
  res.setHeader('Content-Type', 'image/jpeg');
102
- // 使用 filename* 参数来设置文件名
103
- res.setHeader('Content-Disposition', `attachment; filename*=UTF-8''${outputFileName}`);
104
  console.log(`Content-Disposition header is set to: ${res.getHeader('Content-Disposition')}`);
105
 
106
  res.send(finalBuffer);
 
44
  a.href = url;
45
  // 从Content-Disposition头中提取文件名
46
  const contentDisposition = response.headers.get('Content-Disposition');
47
+ const match = contentDisposition.match(/filename="?([^;\"]+)"?/);
48
+ if (match) {
49
+ const fileName = decodeURIComponent(match[1]);
50
+ console.log(fileName);
51
+ a.download = fileName;
52
+ } else {
53
+ console.error('Filename not found');
54
+ }
55
  document.body.appendChild(a);
56
  a.click();
57
  window.URL.revokeObjectURL(url);
 
105
  //const outputFileName = encodeURIComponent(hash + '-pic.zip.jpg');
106
 
107
  res.setHeader('Content-Type', 'image/jpeg');
108
+ // 使用 filename 参数来设置文件名
109
+ res.setHeader('Content-Disposition', `attachment; filename="${outputFileName}"`);
110
  console.log(`Content-Disposition header is set to: ${res.getHeader('Content-Disposition')}`);
111
 
112
  res.send(finalBuffer);