Django REST获取其产品列表的类别列表

时间:2017-11-03 18:24:12

标签: django-rest-framework

我有两个名为Category和Product的django模型。在类别模型中有" is_featured"布尔字段。我需要JSON格式的类别列表,其中is_featured = true和产品列表。模型如下。

Model.collection.update({'vehicle.data._id': params._id},
                        {$pull : {vehicle: {'data._id': params._id}},

我的预期类别列表(is_featured = true)结果如下所示。

   <select>
     @foreach($items as $item)
     <option value="{{$item->name}}">{{$item->name}}</option>
     @endforeach
   </select>

我是django的初学者。在此先感谢您的帮助。

0 个答案:

没有答案