fix: compile error

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
MiaoWoo 2020-02-02 01:58:07 +08:00
parent 0b6c174e42
commit 81fa66684a
1 changed files with 1 additions and 1 deletions

View File

@ -18,13 +18,13 @@ interface RequestConfig {
} }
function request(config: RequestConfig) { function request(config: RequestConfig) {
// @ts-ignore
let xhr = new XMLHttpRequest(); let xhr = new XMLHttpRequest();
xhr.open(config.method, config.url, false); xhr.open(config.method, config.url, false);
for (const header in config.headers) { for (const header in config.headers) {
xhr.setRequestHeader(header, config.headers[header]); xhr.setRequestHeader(header, config.headers[header]);
} }
let future = xhr.send(config.data); let future = xhr.send(config.data);
// @ts-ignore
return future.get(); return future.get();
} }