我用
win.loadURL('http://example.com/index.html')
加载页面,我想截取此请求 回退到自定义文件,如:
protocol.interceptStringProtocol('http', (request, callback) => {
...
callback({
data: fs.readFileSync(path.normalize(${__dirname}/index.html), 'utf-8')
})
})
这将拦截来自此页面的所有HTTP请求。我怎样才能拦截一些HTTP请求?