Giter Club home page Giter Club logo

Comments (9)

Alc-Alc avatar Alc-Alc commented on June 19, 2024 1

Just leaving this here in case you need a workaround. You can use Annotated[int, Parameter(default=12)] to get the behavior you expect.

from typing_extensions import Annotated
from litestar import Litestar, get
from litestar.params import Parameter

@get(path="query_default")
async def query_default(foo: Annotated[int, Parameter(default=12)]) -> None:
    return

app = Litestar(route_handlers=[query_default])

from litestar.

JacobCoffee avatar JacobCoffee commented on June 19, 2024

Could you confirm that this is also true in 2.7.0?

from litestar.

globglarb avatar globglarb commented on June 19, 2024

Same result with fixed version 2.7.0

dependencies = [
    "litestar[standard]==2.7.0"
]

from litestar.

JacobCoffee avatar JacobCoffee commented on June 19, 2024

Thanks!

from litestar.

guacs avatar guacs commented on June 19, 2024

I don't think this is a bug. The specification doesn't have a field to indicate a default value for parameters.

from litestar.

guacs avatar guacs commented on June 19, 2024

Sorry about that. I was completely wrong. While it's correct that the parameter object as per the spec doesn't allow for defaults, it does allow for a schema which can have a default value.

Us not parsing the default properly is a bug.

from litestar.

globglarb avatar globglarb commented on June 19, 2024

Thanks for the workaround. I added the working schema snippet for completeness

...
 "paths": {
    "/query_default": {
      "get": {
        "summary": "QueryDefault",
        "operationId": "QueryDefaultQueryDefault",
        "parameters": [
          {
            "name": "foo",
            "in": "query",
            "schema": {
              "type": "integer",
              "default": 12
            },
            "required": false,
            "deprecated": false,
            "allowEmptyValue": false,
            "allowReserved": false
          }
        ],
...

from litestar.

github-actions avatar github-actions commented on June 19, 2024

This issue has been closed in #3280. The change will be included in the upcoming patch release.

from litestar.

github-actions avatar github-actions commented on June 19, 2024

A fix for this issue has been released in v2.8.0

from litestar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.