获取错误 search_products() 至少需要 2 个参数(给定 2 个)



由于某种原因,我收到错误:

TypeError: search_products() takes at least 2 arguments (2 given)

奇怪的是,我在两个不同的地方进行了相同的API调用 - 一个在我放置在其中一个模型类中的函数中。另一个在页面视图中。模型类中的那个工作正常,而 View 函数中的那个则回抛错误。

以下是我在 Views.py 中的代码:

searchproducts=api.API().search_products(query="myproduct")

同样,当我在 Models.py 中编写完全相同的代码时,一切正常。

我在 api.py 的 API 类中的search_products函数如下:

def search_products(self, category_id, query="", start=0, limit=10, filter=None, ranged_filters=None, sort_by=None):

我怎样才能更深入地挖掘以找到发生这种情况的根源?

追踪:

/Users/me/Desktop/myenv2/lib/python2.7/site-packages/django/core/handlers/base.py in get_response
                # Apply view middleware
                for middleware_method in self._view_middleware:
                    response = middleware_method(request, callback, callback_args, callback_kwargs)
                    if response:
                        return response
                try:
                    response = callback(request, *callback_args, **callback_kwargs) ...
                except Exception, e:
                    # If the view raised an exception, run it through exception
                    # middleware, and if the exception middleware returns a
                    # response, use that. Otherwise, reraise the exception.
                    for middleware_method in self._exception_middleware:
                        response = middleware_method(request, e)

search_products的定义中,您category_id为必填字段,并且在调用该方法时未将其作为参数提供。提供category_id的默认值或传入适当的参数以解决问题

相关内容

  • 没有找到相关文章

最新更新