#javascript #node.js #typeerror
#javascript #node.js #ошибка типа
Вопрос:
Вот мой код:
https://github.com/DavidNyan10/NewProject
const fs = require('fs');
const csv = require('csv-parser')
const myString = new Promise((resolve, reject) => {
resolve('John');
});
class myClass{
constructor(filename){
this.myArray = [];
this.myArray.push(new Promise((res) => {
fs.createReadStream('filename')
.pipe(csv(['FirstName', 'LastName', 'Address', 'Town', 'Country', 'Postcode']))
.on('data', (data) => {
return(data);
})
}))
}
async myFunction() {
for(let i = 0; i < this.myArray.length; i ) {
if (myString.includes(this.myArray[i]['phrase'])){
if (this.cooled_down(i)){
this.approve(i, myString);
}
}
}
}
cooled_down(i){
dictionary = this.myArray[i]
if (!dictionary.keys().includes('approved')){
// Means we have never approved on this person!
return True;
} else{
now = datetime.now();
duration = now - datetime.fromtimestamp(dictionary['approved']);
duration_seconds = duration.total_seconds();
hours = divmod(duration_seconds, 3600)[0];
if (hours >= 24){
return True;
} else{
console.log("Couldn't approve " dictionary['FirstName'] "Cool Down time: " 24 - hours);
}
}
return False;
}
approve(i, myString){
dictionary = this.myArray[i];
try{
setTimeout(function(){
console.log(myString);
console.log(dictionary['FirstName'])
console.log(dictionary['Postcode'])
}, 60 * 60 * 3);
}catch(e){
console.log(e);
}
now = datetime.now();
this.myArray[i]['approved'] = now.timestamp();
}
}
myObj = new myClass("myCSV.csv");
myString.then(myObj.myFunction);
Он продолжает говорить
(node:3196) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'myArray' of undefined
at myFunction (D:projectsnewprojectindex.js:20:30)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:3196) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
(node:3196) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Но, как вы можете ясно видеть, this.myArray
это четко определено в строке 10.
Что происходит?
Я довольно новичок в классах и объектах javascript, поэтому прошу прощения, если я выгляжу глупо.
Кроме того, есть идеи, как я могу улучшить строку 11-17? Я просто помещаю csv в массив, но я не знаю, лучший ли это способ сделать это.
Ответ №1:
Вы позвонили myString.then(myObj.myFunction)
. Это изменение this
ключевого слова с myObj
на что-то другое. Если вы хотите сохранить контекст this
ключевого слова, вам нужно выполнить привязку this
вручную или вызвать функцию вместо передачи ее в then
обратный вызов. Пример:
// Binding `this` to object:
myString.then(myObj.myFunction.bind(myObj));
// or
// Calling the function inside anonymous function instead
// of passing it to `then` callback:
myString.then(() => myObj.myFunction());
Комментарии:
1. О, чувак, большое тебе спасибо! Теперь код выполняется без каких-либо ошибок, но проблема в том, что он не возвращает, кто такой Джон..
2. @DavidNyan10 ваш
myString
содержитPromise
. Нетstring
. Вам нужно передать string вmyFnuction
качестве аргумента.