Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Python controller not receiving payload from Javascript request

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
javascriptcontrollerpython3ajaxAPIOdoo19.0
2 Risposte
803 Visualizzazioni
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
Abbandona
Sofiware, Sofia Ingalls
Autore

@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
Risposta migliore

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
Abbandona
Avatar
Kunjan Patel
Risposta migliore
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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
POST form to controller with ajax, and submit data to websites Qweb template. Risolto
javascript controller website ajax odoo10
Avatar
1
mar 21
20336
ajax.loadXML in odoo16 Risolto
javascript upgrade ajax
Avatar
Avatar
1
giu 23
4212
How to add a new search filter while searching customers in POS web UI via JavaScript? Risolto
javascript python3 odoo
Avatar
Avatar
Avatar
2
feb 23
4766
sending JSON data with 400 status
controller python3 odoo12
Avatar
0
giu 21
4418
How to get data from python controller using javascript
javascript json controller
Avatar
0
feb 21
4821
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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