|
|
@ -384,6 +384,9 @@ async function getV2pValue(key) |
|
|
|
} |
|
|
|
await httpRequest('get',urlObject) |
|
|
|
if(!httpResult || httpResult.statusCode != 200) {this.flag=false;return;} |
|
|
|
if(!httpResult || !httpResult.body) |
|
|
|
return ""; |
|
|
|
|
|
|
|
let result = JSON.parse(httpResult.body); |
|
|
|
if(!result) return "" |
|
|
|
return result.value |
|
|
|