Azure / Azure/static-web-apps-cli
Route rewrite removes Query Parameters
- Langage dominant
- TypeScript
- Étoiles
- 668
- Forks
- 156
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Before filing this issue, please ensure you're using the latest CLI by running `swa --version` and comparing to the latest version on [npm](https://www.npmjs.com/package/@azure/static-web-apps-cli).
**Are you accessing the CLI from the default port `:4280` ?**
- [ ] No, I am using a different port number (`--port`) and accessing the CLI from that port
- [x] Yes, I am accessing the CLI from port `:4280`
> Make sure you are accessing the URL printed in the console when running `swa start`!
**ℹ️ NOTE: Make sure to enable debug logs when running any `swa` commands using `--verbose=silly`**
**Describe the bug**
When defining a route rewrite in the `staticwebapp.config.json` like this:
```
{
"routes": [
{
"route": "/something",
"rewrite": "/api/something"
}
}
```
The query parameters are not passed to the rewritten route.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a route as described above
2. In the API endpoint `something` log the query parameters from the request
3. Run `npx swa start public --api-location http://localhost:7071`
4. Request `http://localhost:4280/something?key=value`
5. Notice in API logs that no query parameters arrive
**Expected behavior**
The query parameters from the initial request are available in the API.
**Desktop (please complete the following information):**
- OS: Windows
- Version 11
Guide de contribution
Ouvrir le guide de contribution
Piste de recherche
Reproduisez le problème à l’aide de staticwebapp.config.json, de `npx swa start public --api-location http://localhost:7071` et de la requête vers `/something?key=value` ; activez les journaux avec `--verbose=silly`. Commencez par les points d’entrée de la CLI pour la réécriture des routes et le transfert vers l’API, puis vérifiez que l’API reçoit le paramètre de requête d’origine et ajoutez une couverture pour ce comportement.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- azure, typescript
- Domaine
- api, cli
- Type d'issue
- Bug
- Difficulté
- 3/5
- Temps estimé
- 1-2 jours
- Activité
- À l'abandon
- Clarté
- Plutôt claire
- Accessibilité débutants
- 45/100