例如:
response()->json(['error' => 'invalid', 401]); response()->json(['success' => 'success', 200]);
这两种方式都是响应200.如果我想在成功时返回200,而在错误发生时返回401.我怎样才能实现这一点.
401或200应该是像这样的json函数的第二个参数
response()->json(['error' => 'invalid'], 401); response()->json(['success' => 'success'], 200);