export const helloWorld = functions.https.onRequest((request,response) => {
console.log("fun() start");
exec('Notepad.exe', function(err, data) {
console.log(err)
console.log(data.toString());
});
我已尝试使用此代码在我的服务器上运行.exe文件,但它正在显示
错误:无法在我的网页上处理请求。
请帮帮我。