出于某种原因,我收到错误:
TypeError: search_products() takes at least 2 arguments (2 given)
奇怪的是,我在两个不同的位置进行相同的API调用 - 一个函数放在一个Model类中。页面视图中的另一个。 models类中的一个工作正常,而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)
答案 0 :(得分:3)
在search_products
的定义中,您将category_id
作为必填字段,并且在调用该方法时,您不会将其作为参数提供。提供category_id
的默认值或传入相应的参数以解决您的问题