我具有以下代码片段,用于过滤内容查询WebPart中的博客文章。我们需要的不仅仅是Sharepoint中已经提供的3个过滤器,因此我使用CMAL-Query进行了尝试。 但是,当我将WebPart添加到我的SP页时,筛选器不适用。有任何建议如何更改代码?
帖子应按类别过滤。
class CustomerViewSet(viewsets.ModelViewSet):
"""Handle creating reading and updating Users in system"""
serializer_class = serializers.CustomerSerializer
#you are using customer model for serializer but for query set you are using
#User model.
queryset = models.Customer.objects.filter( user__type = "CS" )
authentication_classes = (TokenAuthentication,)
permission_classes = (permissions.UpdateCustomerProfile,)
答案 0 :(得分:0)
NVM。
我发现了我的错误。现在,使用U2U Caml Builder,一切都会按预期进行。