# 表单登录 - Form 格式 name: "_user_login_form" request: method: "POST" path: "/v1/user/login/form" headers: Content-Type: "application/x-www-form-urlencoded" body: username: "formuser" password: "formpass" response: status: 200 headers: Content-Type: "application/json" body: | { "code": 0, "message": "表单登录成功", "data": { "token": "v2_form_token_xyz", "userId": 20001, "username": "formuser" } }