refactor(docs): 更新API接口文档结构,优化环境配置说明并移除冗余文件

This commit is contained in:
2025-09-22 15:29:23 +08:00
parent cc2a351f84
commit 00cf840e6f
74 changed files with 620 additions and 5203 deletions

31
test-order-query.js Normal file
View File

@@ -0,0 +1,31 @@
const axios = require('axios');
async function testOrderQuery() {
try {
// 首先登录获取token
const loginResponse = await axios.post('http://localhost:4330/api/auth/login', {
username: 'testuser',
password: 'testpassword'
}, {
headers: { 'Content-Type': 'application/json' }
});
const token = loginResponse.data.data.token;
console.log('登录成功Token:', token);
// 测试订单查询
const ordersResponse = await axios.get('http://localhost:4330/api/orders', {
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
}
});
console.log('订单查询成功:', ordersResponse.data);
} catch (error) {
console.error('测试失败:', error.response?.data || error.message);
}
}
testOrderQuery();