# nodeserver **Repository Path**: cai12317/nodeserver ## Basic Information - **Project Name**: nodeserver - **Description**: node 服务端 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-21 - **Last Updated**: 2021-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1.数据库 UPDATE 成功修改参数 返回值 { "fieldCount": 0, "affectedRows": 1, //受到影响的行数 "insertId": 0, "serverStatus": 2, "warningCount": 0, "message": "(Rows matched: 1 Changed: 1 Warnings: 0", "protocol41": true, "changedRows": 1 //修改的行数 } 2.数据库 UPDATE 未修改参数 返回值 { "fieldCount": 0, "affectedRows": 1, "insertId": 0, "serverStatus": 2, "warningCount": 0, "message": "(Rows matched: 1 Changed: 0 Warnings: 0", "protocol41": true, "changedRows": 0 } 2.数据库 INSERT 成功 返回值 { fieldCount: 0, affectedRows: 1, //受影响行数 insertId: 67, serverStatus: 2, warningCount: 0, message: '', protocol41: true, changedRows: 0 }