Commit d82ca10b authored by 以墨为白's avatar 以墨为白 🎧

url增加encoding避免#等字符对url的影响

parent 4388240e
...@@ -126,7 +126,7 @@ export default { ...@@ -126,7 +126,7 @@ export default {
if (res) { if (res) {
return Promise.resolve(); return Promise.resolve();
} else { } else {
return _self.post(`api/rest/file/bigFile/merge?fileName=${file.name}&fileMd5=${file.md5}`); return _self.post(`api/rest/file/bigFile/merge?fileName=${encodeURIComponent(file.name)}&fileMd5=${file.md5}`);
} }
}) })
.then(res => { .then(res => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment