You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
307 B
10 lines
307 B
2 years ago
|
let Verify ={
|
||
|
ocr: function(url){
|
||
|
let img = convertBase64Image(url).replace('data:image/jpeg;base64,','');
|
||
|
let code = post("http://124.221.241.174:9898/ocr/b64/text", {headers: {"Content-Type": "application/json"}, body: img});
|
||
|
return code;
|
||
|
},
|
||
|
slide: function(){
|
||
|
|
||
|
}
|
||
|
}
|