Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
2252 Lượt xem
Getting 404 Error for web controller
in Postman http://localhost:8017/school/schoolrecords
File name: controller/controllers.py

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging

from odoo import http
from odoo.http import request
_logger = logging.getLogger(__name__)
class StudentController(http.Controller):

@http.route('/school/schoolrecords', type='http', auth='public', methods=['GET'])
def getSchoolRecords(self):
school_rec = request.env['school.student'].sudo().search([])
school=[]

for rec in school_rec:
vals={
'id':rec.classid
}
school.append(vals)
return {'student':school}


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hii,

Odoo routes returning JSON should set type='json' or return a Response object (not just a dictionary).

Also, you are using type='http' but returning a plain Python dictionary. For JSON responses, it's better to either:

  • Use type='json' (automatic JSON serialization)
  • Or manually return a Response with headers

here is updated code 
# -*- coding: utf-8 -*-

from odoo import http

from odoo.http import request

import json


class StudentController(http.Controller):


    @http.route('/school/schoolrecords', type='json', auth='public', methods=['GET'])

    def get_school_records(self):

        school_rec = request.env['school.student'].sudo().search([])

        school = []


        for rec in school_rec:

            school.append({

                'id': controllers.py

i hope it is use full

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 6 25
580
3
thg 6 24
3409
1
thg 3 23
3819
0
thg 4 17
2966
0
thg 3 15
4025