fix: 暂存

This commit is contained in:
wangzhongjie 2025-03-05 19:45:23 +08:00
commit b612c376ee

View File

@ -12,12 +12,14 @@ interface RES {
message?: string
}
const config = {
address: '172.37.55.191',
port: 40000
}
export default async function tcp2ByteRequest(data): Promise<RES> {
return new Promise(async (resolve, reject) => {
const tcpClient: socket.TCPSocket = socket.constructTCPSocketInstance()
@ -77,7 +79,6 @@ function handSendMessage(client: socket.TCPSocket, type, data) {
case '02-21-000012':
case '02-21-000014':
data.forEach((item) => {
console.log(TAG, JSON.stringify(item))
client.send({ data: new Uint8Array(item).buffer })
})
break;
@ -98,6 +99,8 @@ function handReceiveMessage(client: socket.TCPSocket, sendData, rData: ArrayBuff
console.info(TAG, 'receiveData=>' + JSON.stringify(receiveData))
//返回的消息类型
const messageType = receiveData[1];
console.info(TAG, 'receiveData messageType=>' + JSON.stringify(receiveData))
//流水号
const lsh = bytesToDecimal([receiveData[2], receiveData[3]]);
@ -121,10 +124,10 @@ function handReceiveMessage(client: socket.TCPSocket, sendData, rData: ArrayBuff
const messageLength = bytesToDecimal([receiveData[9], receiveData[10]]);
const markLength = receiveData[11];
const markContent = decoder.decodeWithStream(receiveData.slice(12, 12 + markLength));
console.info(TAG, 'markContent=>' + markContent)
console.info(TAG + messageType, 'markContent=>' + markContent)
const tipLength = receiveData[13];
const messageContent = decoder.decodeWithStream(receiveData.slice(13 + markLength, 13 + markLength + tipLength));
console.info(TAG, 'messageContent=>' + messageContent)
console.info(TAG + messageType, 'messageContent=>' + messageContent)
return {
code: markContent,
message: messageContent