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.
我正在使用 servlet 来构建代理服务。我解析一些超链接,如
a href="http://www.google.com"
至
a href="proxyserver?url=http://www.google.com"
form, frame, iframe 也是我解析的。所以所有的请求都将通过我的代理服务器。但是现在我发现了一些问题。
例如:像“form”标签..
javascript 将处理表单的操作。它改变了行动。太可怕了。
我能怎么做?有没有更好的方法?
像这样重写页面真的很难。去过那里......从来没有真正成功过。
我认为您最好编写一个(受信任的)浏览器插件,通过拦截和重写传出的 HTTP 请求来进行代理。(而且我什至不确定这是可能的......)