我有两个名为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的初学者。在此先感谢您的帮助。