Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Bricoleur
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Python controller not receiving payload from Javascript request

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
javascriptcontrollerpython3ajaxAPIOdoo19.0
2 Réponses
791 Vues
Avatar
Sofiware, Sofia Ingalls

This JavaScript code sends a POST request to a Python controller but the two values (name and country) are never received:


const apiBtn = document.querySelector('#api_btn');

if (apiBtn) {

​ apiBtn.addEventListener('click', () => {

​ ​ fetch('/api/proxy', {

​ ​ ​ method: 'POST',

​ ​ ​ headers: { 'Content-Type': 'application/json' },

​ ​ ​ body: JSON.stringify({ 'name': 'Gerhart', 'country': 'Germany' })

​ ​ })

​ ​ .then(res => res.json())

​ ​ .then(result => {

​ ​ ​ document.querySelector('#api_output').textContent = result.result.response;

​ ​ })

​ ​ .catch(err => console.error('proxy call failed:', err)); ​

​});

}


controller:

import requests

from odoo import http

from odoo.http import request


class MyController(http.Controller):

​ @http.route('/api/proxy', type='json', auth='user', methods=['POST'], csrf=False)

​ def api_proxy(self, name, country):

​ ​ resp = requests.post(

​ ​ 'https://apiserver.com/myapi.php',

​ ​ data={'name': name or '', 'country': country or ''},

​ ​ timeout=10

​ ​ )

​ ​ return resp.json()


The response from the API is received and relayed successfully back to the JavaScript code, but it's missing the two values.


If the two values are hardcoded into the data, the API receives the values and responds with them.

data={'name': 'Gerhart', 'country': 'Germany'}


Does Odoo 19 require some additional protocol?

0
Avatar
Ignorer
Sofiware, Sofia Ingalls
Auteur

@Codesphere: Thank you most kindly, for the suggestion and the ultimate solution. That resolved the issue perfectly.


@Kunjan Patel: Thank you, my friend. You're always there for me.

I do have to apologize again for replying like this, as commenting and upvoting are still not enabled for my newbie account.

AlexanderJBoyle

Thank you for sharing

Avatar
Codesphere Tech
Meilleure réponse

Hello,
Update your route type with jsonrpc

warnings.warn(
"Since 19.0, @route(type='json') is a deprecated alias to @route(type='jsonrpc')",
If required update below: (Sample code not tested):
fetch('/api/proxy', {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({
                jsonrpc: "2.0",
                method: "call",
                params: {
                    name: "Gerhart",
                    country: "Germany"
                }
            })

        })
Hope it helps.

1
Avatar
Ignorer
Avatar
Kunjan Patel
Meilleure réponse
Hello Sofia Ingalls
I hope you are doing well

Issue: type='json' is deprecated in Odoo 19. Controllers don't receive JSON payload from JavaScript.
Fix: Change type='json' → type='jsonrpc'


I hope this information helps you

Thanks & Regards,
Kunjan Patel

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
POST form to controller with ajax, and submit data to websites Qweb template. Résolu
javascript controller website ajax odoo10
Avatar
1
mars 21
20335
ajax.loadXML in odoo16 Résolu
javascript upgrade ajax
Avatar
Avatar
1
juin 23
4212
How to add a new search filter while searching customers in POS web UI via JavaScript? Résolu
javascript python3 odoo
Avatar
Avatar
Avatar
2
févr. 23
4766
sending JSON data with 400 status
controller python3 odoo12
Avatar
0
juin 21
4418
How to get data from python controller using javascript
javascript json controller
Avatar
0
févr. 21
4820
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now