Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
fs.exists(controller_path, function (exists) { util.debug( exists ? 'here' : 'not here' ); });
这是文档中的示例。该文件肯定存在,但对于每个请求,我都会收到:
DEBUG: here DEBUG: not here
您已经发布了示例代码,但没有发布您拥有的实际代码。不要期望太多。
然而,我敢打赌,他是一个在黑暗中开枪的人:
您没有意识到浏览器正在发送 2 个 GET 请求:1 个用于“/”,第二个用于“/favicon.ico”。