I got a problem in node.js file system. here is my code. my function always return a empty string. I'm wondering is there anyway to make my function stop execute until readFile method is completed.
var fs = require('fs');
function myfun(filePath){
var str = '';
fs.readFile(filePath, function(err, data){
if(err) throw err;
str = data;
});
return str; //here, the variable str always return '' because the function doesn't wait for the readFile method complete.
}
add explanation
Actually I'm doing something like this: the function myfun is used for replace str you can see my code:
function fillContent(content) {
var rex = /\<include.*?filename\s*=\s*"(.+?)"\/>/g;
var replaced = fileStr.replace(rex, function (match, p1) {
var filePath = p1
var fileContent = '';
fs.readFile(filePath, function (err, data) {
if (err) {
throw err;
}
fileContent = data;
});
return fileContent;
});
return replaced;// here, the return value is used for replacement
}
I need a return value in the replace function, so this is why I didn't use a callback function
If you need to do it synchronously then you should use fs.readFileSync() (https://nodejs.org/api/fs.html#fs_fs_readfilesync_filename_options) instead.
var fs = require('fs');
function myfun(filePath){
return fs.readFileSync(filePath);
}
You need to pass a callback to myfun
function as below in order to get back data from the function when file reading is over:
var fs = require('fs');
function myfun(filePath, cb){
var str = '';
fs.readFile(filePath, 'utf8', function(err, data){
if(err) throw err;
cb(data);
});
}
// call it like this
myfun('some_path', function(data) { /* use returned data here */} );
You need to invest some time into better understanding of asynchronous nature of JavaScript.
The problem with your code is that return str
is outside of the readFile
callback, which means return str
executes earlier than the readFile
callback gets called to set str
to a meaningful value.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With