Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
5485 มุมมอง

I'm trying to hide the debug code from seesion expired error, so i need to override the _handle_exception method to delete debug code from exception. Can anyone explain how to do this ?

อวตาร
ละทิ้ง
ผู้เขียน

I need to override def in http.py class JSONRequest method _handle_exception

คำตอบที่ดีที่สุด

Hi Kitty,

You can do it like this.

Inside the controller,

from odoo.addons.base.ir import ir_http

class IrHttp(ir_http.IrHttp):

@classmethod
def _handle_exception(cls, exception):
# If handle_exception returns something different than None, it will be used as a response

# This is done first as the attachment path may
# not match any HTTP controller
if isinstance(exception, werkzeug.exceptions.HTTPException) and exception.code == 404:
attach = cls._serve_attachment()
if attach:
return attach

# Don't handle exception but use werkeug debugger if server in --dev mode
if 'werkzeug' in tools.config['dev_mode']:
raise
try:
return request._handle_exception(exception)
except AccessDenied:
return werkzeug.exceptions.Forbidden()

Thanks

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
พ.ค. 25
1287
0
ก.พ. 22
3265
2
ม.ค. 22
3454
2
ม.ค. 22
4565
0
ก.ย. 21
200