我在view.py中有Company、product、customer表,而product.id、customer.id是Company类中的关键字,如何获取选定的数据。
比如sql (select * from Company,customer,product where Company.customer_id = customer.id和company.product_id =product.id)并使其返回json,这样在客户端就可以获得json数据了吗?
以及如何在web客户端中使用json数据?
我是新来Django的,你能帮我解决这个问题吗?
class Company(model