fix: 暂存
This commit is contained in:
		
							parent
							
								
									7a197098aa
								
							
						
					
					
						commit
						b966891f35
					
				| @ -4,13 +4,13 @@ | ||||
|       { | ||||
|         "name": "default", | ||||
|         "material": { | ||||
|           "certpath": "/Users/surenjun/.ohos/config/openharmony/auto_ohos_default_subject-two_com.oh.dts.cer", | ||||
|           "storePassword": "0000001BE4BBADDF656A884E7A7BB5FD51F64FBB61DD24A944FEA969482DD693210ED5FF3D29F13642E3A3", | ||||
|           "certpath": "/Users/wangzhongjie/.ohos/config/openharmony/default_subject-two_Kl4t-ZSvZeuUm9s8O-e6FIH2VFR_OaNyhDP8kPjIWgU=.cer", | ||||
|           "storePassword": "0000001B1A6C605B348CE1F76970E037662E7240FC9A88762FF9CC0FBF41CD85BB9F44F66A7002A0A4226D", | ||||
|           "keyAlias": "debugKey", | ||||
|           "keyPassword": "0000001BDEFFDC280B45617E7FC447CB21F2D133540301F543454643D3F5E9F6E5ED2A583A7FA92B260433", | ||||
|           "profile": "/Users/surenjun/.ohos/config/openharmony/auto_ohos_default_subject-two_com.oh.dts.p7b", | ||||
|           "keyPassword": "0000001B0C7AC8946180EE4BBCB5880D04DF499C741EBA9485672DD1C6902D3944018F866199FFD1B10B30", | ||||
|           "profile": "/Users/wangzhongjie/.ohos/config/openharmony/default_subject-two_Kl4t-ZSvZeuUm9s8O-e6FIH2VFR_OaNyhDP8kPjIWgU=.p7b", | ||||
|           "signAlg": "SHA256withECDSA", | ||||
|           "storeFile": "/Users/surenjun/.ohos/config/openharmony/auto_ohos_default_subject-two_com.oh.dts.p12" | ||||
|           "storeFile": "/Users/wangzhongjie/.ohos/config/openharmony/default_subject-two_Kl4t-ZSvZeuUm9s8O-e6FIH2VFR_OaNyhDP8kPjIWgU=.p12" | ||||
|         } | ||||
|       } | ||||
|     ], | ||||
|  | ||||
| @ -2,6 +2,11 @@ | ||||
|   "apiType": 'stageMode', | ||||
|   "buildOption": { | ||||
|     "externalNativeOptions": { | ||||
|       "abiFilters": [ | ||||
|         "arm64-v8a", | ||||
|         "armeabi-v7a", | ||||
|         "x86_64" | ||||
|       ], | ||||
|       "path": "./src/main/cpp/CMakeLists.txt", | ||||
|       "arguments": "", | ||||
|       "cppFlags": "", | ||||
|  | ||||
| @ -1,13 +1,15 @@ | ||||
| { | ||||
|   "lockfileVersion": 1, | ||||
|   "lockfileVersion": 2, | ||||
|   "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.", | ||||
|   "specifiers": { | ||||
|     "@ohos/hypium@1.0.6": "@ohos/hypium@1.0.6" | ||||
|   }, | ||||
|   "packages": { | ||||
|     "@ohos/hypium@1.0.6": { | ||||
|       "resolved": "https://repo.harmonyos.com/ohpm/@ohos/hypium/-/hypium-1.0.6.tgz", | ||||
|       "integrity": "sha512-bb3DWeWhYrFqj9mPFV3yZQpkm36kbcK+YYaeY9g292QKSjOdmhEIQR2ULPvyMsgSR4usOBf5nnYrDmaCCXirgQ==" | ||||
|       "resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/hypium/-/hypium-1.0.6.tgz", | ||||
|       "integrity": "sha512-bb3DWeWhYrFqj9mPFV3yZQpkm36kbcK+YYaeY9g292QKSjOdmhEIQR2ULPvyMsgSR4usOBf5nnYrDmaCCXirgQ==", | ||||
|       "registryType": "ohpm", | ||||
|       "shasum": "3f5fed65372633233264b3447705b0831dfe7ea1" | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -3,6 +3,7 @@ import util from '@ohos.util' | ||||
| import promptAction from '@ohos.promptAction' | ||||
| import TcpToByte from './utils/tcp2byte' | ||||
| import { bytesToDecimal } from './utils/tools' | ||||
| 
 | ||||
| const TAG = '[TCP2BYTE]' | ||||
| 
 | ||||
| 
 | ||||
| @ -12,8 +13,8 @@ interface RES { | ||||
| } | ||||
| 
 | ||||
| const config = { | ||||
|   address: '114.55.125.222', | ||||
|   port: 50189 | ||||
|   address: '172.37.55.191', | ||||
|   port: 40000 | ||||
| } | ||||
| 
 | ||||
| export default async function tcp2ByteRequest(data): Promise<RES> { | ||||
| @ -27,7 +28,11 @@ export default async function tcp2ByteRequest(data): Promise<RES> { | ||||
|     console.info(TAG, 'sendData=>' + JSON.stringify(sendData)) | ||||
| 
 | ||||
|     try { | ||||
|       await tcpClient.connect({address: {address, port}}) | ||||
|       await tcpClient.connect({ | ||||
|         address: { | ||||
|           address, port | ||||
|         } | ||||
|       }) | ||||
|       //发送消息
 | ||||
|       handSendMessage(tcpClient, data.sjbs, sendData) | ||||
|     } catch (e) { | ||||
| @ -41,7 +46,7 @@ export default async function tcp2ByteRequest(data): Promise<RES> { | ||||
| 
 | ||||
|     //收到消息
 | ||||
|     tcpClient.on('message', (data) => { | ||||
|       const res = handReceiveMessage(tcpClient, sendData, data) | ||||
|       const res = handReceiveMessage(tcpClient, sendData, data.message) | ||||
|       if (res) { | ||||
|         tcpClient.close() | ||||
|         resolve(res) | ||||
| @ -83,7 +88,8 @@ function handSendMessage(client: socket.TCPSocket, type, data) { | ||||
|       client.send({ data: new Uint8Array(data).buffer }) | ||||
|       break; | ||||
| 
 | ||||
|     default:break; | ||||
|     default: | ||||
|       break; | ||||
|   } | ||||
| } | ||||
| 
 | ||||
|  | ||||
| @ -1,6 +1,6 @@ | ||||
| { | ||||
|   "hvigorVersion": "3.0.9", | ||||
|   "hvigorVersion": "3.2.4", | ||||
|   "dependencies": { | ||||
|     "@ohos/hvigor-ohos-plugin": "3.0.9" | ||||
|     "@ohos/hvigor-ohos-plugin": "3.2.4" | ||||
|   } | ||||
| } | ||||
| @ -1,13 +1,15 @@ | ||||
| { | ||||
|   "lockfileVersion": 1, | ||||
|   "lockfileVersion": 2, | ||||
|   "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.", | ||||
|   "specifiers": { | ||||
|     "@ohos/hypium@1.0.6": "@ohos/hypium@1.0.6" | ||||
|   }, | ||||
|   "packages": { | ||||
|     "@ohos/hypium@1.0.6": { | ||||
|       "resolved": "https://repo.harmonyos.com/ohpm/@ohos/hypium/-/hypium-1.0.6.tgz", | ||||
|       "integrity": "sha512-bb3DWeWhYrFqj9mPFV3yZQpkm36kbcK+YYaeY9g292QKSjOdmhEIQR2ULPvyMsgSR4usOBf5nnYrDmaCCXirgQ==" | ||||
|       "resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/hypium/-/hypium-1.0.6.tgz", | ||||
|       "integrity": "sha512-bb3DWeWhYrFqj9mPFV3yZQpkm36kbcK+YYaeY9g292QKSjOdmhEIQR2ULPvyMsgSR4usOBf5nnYrDmaCCXirgQ==", | ||||
|       "registryType": "ohpm", | ||||
|       "shasum": "3f5fed65372633233264b3447705b0831dfe7ea1" | ||||
|     } | ||||
|   } | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user