Servlet doGet() doPost() 方法
一般我们在HTML代码中指定doGet
和doPost
,这样servlet就会相对于HTML代码中的调用来调用这些方法。
有没有办法让我们调用 doPost
还是 doGet
Servlet doPost
方法都会被调用?
我知道有一种方法可以在 doGet 中调用 doPost 方法,但除此之外还有其他方法吗?
Generally we specify the doGet
and doPost
in our HTML code, so that servlet will invoke these methods with respect to the call in HTML code.
Is there any way that whether we call doPost
or doGet
Servlet doPost
method will get called?
I know there is one way that in doGet
we can call doPost
method , But apart from that is there any other method .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从另一个方法调用一个方法,或者更好 - 从两个方法调用第三种方法是最好的方法。
您也可以重写
service()
方法,但其中还有更多您可能不想丢失的代码。Calling one from the other, or better - calling a 3rd method from both is the best approach.
You can override the
service()
method as well, but there's more code there that you might not want to loose.您可以创建一个通用方法并将其放入 doGet() 或 doPost() 中。
You can create a common method and put it into doGet() or doPost().