为什么在调用函数后不能更改变量?
这是我的代码:
const tabletojson = require('tabletojson');
var email ;
tabletojson.convertUrl(
'https://myurl
,
{ stripHtmlFromCells: true },
function(tablesAsJson) {
email = tablesAsJson[2][7][1];
var result2 = tablesAsJson;
console.log(result2);
var Firstname;
var lastname;
Firstname = tablesAsJson[0][1][1]
lastname = tablesAsJson[0][0][1]
console.log("Hello Sir: "+Firstname + " " +lastname + ". your email is : " + email)
console.log(email)// this prints the correct answer
}
);
尝试在功能范围之外打印电子邮件时 返回一个空白文本 console.log(“电子邮件为” +电子邮件);
答案 0 :(得分:1)
如果您需要将此代码用作模块的导出函数,则需要以下内容:
test-module.js:
'use strict';
const tabletojson = require('tabletojson');
async function getTableAsArray(url) {
try {
return await tabletojson.convertUrl(url);
} catch (err) {
console.error(err);
}
}
module.exports = {
getTableAsArray,
};
test.js:
'use strict';
const testModule = require('./test-module.js');
(async function main() {
try {
const array = await testModule.getTableAsArray(
'https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes'
);
console.log(array[1][0]);
} catch (err) {
console.error(err);
}
})();
答案 1 :(得分:0)
方法convertUrl是异步的,您无法根据需要在顶级代码中使用 await 。