我有一个包含一些功能的js文件名business_video.js。最后,我导出它们:

  module.exports = {
        checkShare,
        checkDownloadFile,
        uploadVideo,
        quickTransferVideo,
        searchVideoInshared,
        renameVideo,
        deleteVideo,
        addTags,
        deleteTag,
        downloadFileToFromHDFSToServer,
        doesFileExistInServer,
        videoSquare,
        getVideoInfoByIdsArray
    }


我想在整个项目中找到函数名getVideoInfoByIdsArray的用法,包括那些先使用const abc = require('../business_video')然后使用abc.getVideoInfoByIdsArray()的人。

但是我当我按F7
function getVideoInfoByIdsArray(){...}它显示唯一的用法是在module.exports={...}中。如何找到整个项目中的用法?

最佳答案

进行全局查找,默认键映射为ctrl + shift + F,然后按文件掩码js过滤,取消选中大小写和/或正则表达式,然后改为选择项目目录并设置项目的根目录。在搜索框中粘贴函数名称。如果没有结果,则表示未使用!

09-10 17:15