简体   繁体   中英

Javascript client-side ORM

On a project Im working on, I need to make several and somewhat complex queries. Im using javascript on the client-side, yet no frameworks. The backend is django and database is PostrgeSQL.

I was willing to make a small django adapter in this case for javascript, in order to use ORM of Django. But I dont think this is the best option.

I would not want to use only 10% of a framework just because of its ORM. Is there a light javascript option for this? Thank you.

A light option? Not really. You wouldn't just straight up expose the Django ORM to the frontend. Django has probably the most well thought out REST implementation through http://www.django-rest-framework.org/ it's not terribly complex to use and integrates with the ORM.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM