Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

request.args dans Chapitre8 #7

Open
vasaura opened this issue Feb 2, 2018 · 1 comment
Open

request.args dans Chapitre8 #7

vasaura opened this issue Feb 2, 2018 · 1 comment

Comments

@vasaura
Copy link

vasaura commented Feb 2, 2018

Bonjour
Dans le chapitre 8, quand vous faites référence à la récupération des paramètres dans une url vous dites :

.... pour l'url http://localhost/une_page?i=0&recherche=quelque%20chose on aura :

request.args == {
"une_page": "0",
"recherche": "quelque chose" # %20 remplace un espace dans les URLs
}
Je me demande s'il ne s'agit pas plutôt de

request.args == {
"i": "0",
"recherche": "quelque chose" # %20 remplace un espace dans les URLs
}

@PonteIneptique
Copy link
Owner

Vous avez tout à fait raison, il s'agit d'une typo. Il s'agit bien de

request.args == {
"i": "0",
"recherche": "quelque chose" # %20 remplace un espace dans les URLs
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants