mirror of
https://github.com/2234839/web-font.git
synced 2025-04-05 12:12:43 +08:00
36 lines
888 B
TypeScript
36 lines
888 B
TypeScript
const server="http://127.0.0.1:3000"
|
|
export function get_font(font:string, text:string) {
|
|
return new Promise((rs, re) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.addEventListener('readystatechange', function() {
|
|
if (this.readyState === 4) {
|
|
rs(JSON.parse(this.responseText)[0]);
|
|
}
|
|
});
|
|
xhr.open(
|
|
'GET',
|
|
`${server}/fontmin?font=${encodeURIComponent(
|
|
font,
|
|
)}&text=${encodeURIComponent(text)}`,
|
|
);
|
|
xhr.onerror=re
|
|
xhr.send();
|
|
})
|
|
}
|
|
export function get_font_list(font:string, text:string) {
|
|
return new Promise((rs, re) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.addEventListener('readystatechange', function() {
|
|
if (this.readyState === 4) {
|
|
rs(JSON.parse(this.responseText));
|
|
}
|
|
});
|
|
xhr.open(
|
|
'GET',
|
|
`${server}/font_list`,
|
|
);
|
|
xhr.onerror=re
|
|
xhr.send();
|
|
})
|
|
}
|