Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
165 views
in Technique[技术] by (71.8m points)

reactjs - Find a file in React

How to search a specific named file in a folder using React ?

My file name is like below

var filename =  window.location.hostname ;

Now I would like to search the file like below

if(require('../public/service/filename.json')) {

//do something
}
else {
 //do something
}
question from:https://stackoverflow.com/questions/65829189/find-a-file-in-react

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use following way:

const checkFileExist = (path) => {
  try {
   return require(`${path}`);
  } catch (err) {
   return null;
  }
};

and use it on your component

 if(checkFileExist('../public/service/filename.json') === null) {
   // something
 } else {
   // something
 }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...