此代码段无法正常工作:
--flush
错误:
return Response({"Error": "build {} does not exist"}.format(build_name), status=status.HTTP_404_NOT_FOUND)
我做错了什么?我正在使用Python 3 btw。
答案 0 :(得分:3)
您正在将.format
应用于dict
而不是string
。
尝试:
return Response({"Error": "build {} does not exist".format(build_name)}, status=status.HTTP_404_NOT_FOUND)