Code Monkey home page Code Monkey logo

Comments (5)

vitalik avatar vitalik commented on May 14, 2024 2

Hi @moshthepitt

the files/images schema will come in 10.x.x version (should be released somehwere soon)

in meanwhile you can use @rjLelis suggestion :

image = request.FILES['image']

(where image is actually DjangoFile that your can read/save-to-model

after release image will be basically same Django File object... the parameters will be something like this:

@api.post('/images')
def upload_image(request, image: File):
      ...

from django-ninja.

rjLelis avatar rjLelis commented on May 14, 2024 2

@moshthepitt

Additionally in your example you've just typed a string to represent the image. Does that mean that you will ask the user to somehow convert the image to a string (maybe base64) first?

I actually sent the file with Content-Type header set to multipart/form-data. With that, I can manipulate the file attributes.

@api.post('/image')
def post_image(request):
    image = request.FILES['image']
    return {
        'name': image.name,
        'size': image.size,
    }

from django-ninja.

rjLelis avatar rjLelis commented on May 14, 2024

I think you just do like you would in normal Django:

from django.contrib import admin
from django.urls import path
from ninja import NinjaAPI

api = NinjaAPI()

@api.post('/image')
def post_image(request):
    image = request.FILES['image']
    return {'message': image.name}

urlpatterns = [
    path('admin/', admin.site.urls),
    path('api/', api.urls)
]

2020-12-28_19-20

from django-ninja.

moshthepitt avatar moshthepitt commented on May 14, 2024

Thanks @rjLelis - but how do you provide a type hint such that OpenAPI renders a file upload button?

Additionally in your example you've just typed a string to represent the image. Does that mean that you will ask the user to somehow convert the image to a string (maybe base64) first?

It would be nice to have an official example in the docs - and I'd be happy to send In a PR once it's clear to me how to handle this.

from django-ninja.

moshthepitt avatar moshthepitt commented on May 14, 2024

Thank you @rjLelis @vitalik - I am going to close this.

from django-ninja.

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.