js實現從程式碼路徑讀入檔案
阿新 • • 發佈:2018-12-12
注意這裡不是說從硬體地址讀入,只是實現在程式碼相同的路徑讀入檔案
const PUBLIC_CERT_PATH = "js/dmservice/wenv3/pub_key_V3.cer";
readKey: function(url) {
return new Promise(function(resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'text';
xhr.send();
xhr.onload = function() {
resolve(xhr.response);
};
xhr.onerror = function() {
var err = new Error('Could not read sound file: ' + url +
' (status: ' + xhr.status + ')');
debug(err);
reject(err);
};
});
},
this.readKey(PUBLIC_CERT_PATH ).then((pubKeyText) => {
if (!pubKeyText) {
return;
}
});
以前不知道還有這種用法,記錄一下。