在HarmonyOS中实现语音搜索功能时,涉及到麦克风权限的申请、音频数据的采集、编码和传输等多个步骤。以下是对上述代码的详细解析和补充说明:

麦克风权限的申请与检查
在HarmonyOS中,使用麦克风需要申请ohos.permission.MICROPHONE权限。在代码中,通过GRPermissionsUtils.checkPermissions方法来检查和申请权限。如果权限被授予,则可以继续进行音频采集操作。
GRPermissionsUtils.checkPermissions(permission).then((grantStatus: abilityAccessCtrl.GrantStatus) => {

GRLog.info(this.TAG, 'startRecord checkPermissions then: ${grantStatus}');
if (grantStatus === abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) {

// 权限已授予,继续音频采集操作

}
}).catch((error: BusinessError) => {

// 处理权限申请失败的情况
});
音频采集配置
在权限授予后,需要配置音频采集的参数,包括采样率、声道数、采样格式等。这些参数决定了音频数据的质量和格式。
let audioStreamInfo: audio.AudioStreamInfo = {

samplingRate: audio.AudioSamplingRate.SAMPLE_RATE_16000, // 采样率16kHz
channels: audio.AudioChannel.CHANNEL_1, // 单声道
sampleFormat: audio.AudioSampleFormat.SAMPLE_FORMAT_S16LE, // 16位采样格式
encodingType: audio.AudioEncodingType.ENCODING_TYPE_RAW // 原始编码类型
};

let audioCaptureInfo: audio.AudioCapturerInfo = {

source: audio.SourceType.SOURCE_TYPE_MIC, // 音频源为麦克风
capturerFlags: 0
};

let audioCaptureOptions: audio.AudioCapturerOptions = {

streamInfo: audioStreamInfo,
capturerInfo: audioCaptureInfo
};
创建音频采集器并开始采集
通过audio.createAudioCapturer方法创建音频采集器,并开始采集音频数据。采集到的音频数据会通过回调函数audioCaptureStartReceiver进行处理。
audio.createAudioCapturer(audioCaptureOptions, (error: BusinessError, capture: audio.AudioCapturer) => {

if (error) {

GRLog.info(this.TAG, 'startRecord createAudioCapturer error: ${JSON.stringify(error)}');
// 处理麦克风权限被拒绝或采集器创建失败的情况

} else {

this.audioRecord = capture;
this.audioRecord.off('readData', this.audioCaptureStartReceiver);
this.audioRecord.on('readData', this.audioCaptureStartReceiver);
this.audioRecord.start();
this.mStartTime = systemDateTime.getTime(false);

}
});
音频数据处理
在audioCaptureStartReceiver回调函数中,处理采集到的音频数据。每0.1秒发送一个数据包,并将音频数据进行Base64编码后发送到服务端进行解码和敏感词检测。
private audioCaptureStartReceiver = (result: ArrayBuffer) => {

GRLog.info(this.TAG, 'audioCaptureStartReceiver result:${result.byteLength}');
try {

// 计算录音时长
let durationTime = systemDateTime.getTime(false) - this.mStartTime;
if (durationTime > this.mMaxRecordTime) {
    this.isRecordTimeOut = true;
    // 提示用户录音时间过长
    return;
}

// 将音频数据添加到缓冲区
this.tmpRecordBuffers.push(buffer.from(result.slice(0, result.byteLength)));
this.tmpBufsize += result.byteLength;

// 当缓冲区达到一定大小或录音结束时,发送数据
if (this.tmpBufsize >= this.recordBufsize || 
    (this.isStopRecord && this.tmpBufsize > 0 && this.tmpBufsize < this.recordBufsize && this.tmpRecordBuffers.length > 0)) {
    let tmpResult = buffer.concat(this.tmpRecordBuffers).buffer;
    let read: number = tmpResult.byteLength;
    // 将音频数据添加到发送队列
    this.addAudio(tmpResult, read);
    this.tmpRecordBuffers = [];
    this.tmpBufsize = 0;
}

} catch (e) {

// 处理异常

}
}
PCM文件每帧容量的计算
PCM文件的每帧容量(单位:字节数)可以通过以下公式计算:
采样频率 采样位数 声道数 * 时间 / 8
例如,采样频率为16kHz,采样位数为16位,声道数为1,时间为0.1秒时,每帧容量为:

16000 16 1 * 0.1 / 8 = 3200字节

音频数据的Base64编码与传输
在发送音频数据之前,通常会将音频数据进行Base64编码,以确保数据在传输过程中不会丢失或损坏。编码后的数据可以通过HTTP请求发送到服务端进行解码和进一步处理。
敏感词检测
服务端在接收到音频数据后,会进行解码并检测是否存在敏感词。如果检测到敏感词,服务端可以返回相应的提示信息,客户端可以根据返回结果进行相应的处理。
补充与优化
错误处理:在实际应用中,需要增加更多的错误处理逻辑,例如网络请求失败、服务端解码失败等情况。
性能优化:对于长时间录音的场景,可以考虑对音频数据进行压缩,以减少数据传输量。

用户体验:可以在录音过程中增加实时反馈,例如显示录音时长、音量大小等,提升用户体验。

总结
HarmonyOS提供了丰富的API来支持语音搜索功能的开发。通过合理的权限管理、音频采集配置、数据处理和传输,可以实现高效、稳定的语音搜索功能。后续可以根据实际需求进一步优化和扩展功能。
https://weibo.com/ttarticle/p/show?id=2309405145963424777020
https://weibo.com/ttarticle/p/show?id=2309405145963525177411
https://weibo.com/ttarticle/p/show?id=2309405145963621646486
https://weibo.com/ttarticle/p/show?id=2309405145963722571852
https://weibo.com/ttarticle/p/show?id=2309405145963819040893
https://weibo.com/ttarticle/p/show?id=2309405145963986550896
https://weibo.com/ttarticle/p/show?id=2309405145964087476324
https://weibo.com/ttarticle/p/show?id=2309405145964183945932
https://weibo.com/ttarticle/p/show?id=2309405145964284346398
https://weibo.com/ttarticle/p/show?id=2309405145964381078116
https://weibo.com/ttarticle/p/show?id=2309405145964578209840
https://weibo.com/ttarticle/p/show?id=2309405145964674416686
https://weibo.com/ttarticle/p/show?id=2309405145964771148142
https://weibo.com/ttarticle/p/show?id=2309405145964871811454
https://weibo.com/ttarticle/p/show?id=2309405145964980601070
https://weibo.com/ttarticle/p/show?id=2309405145965077070196
https://weibo.com/ttarticle/p/show?id=2309405145965177733256
https://weibo.com/ttarticle/p/show?id=2309405145965274464638
https://weibo.com/ttarticle/p/show?id=2309405145965370934068
https://weibo.com/ttarticle/p/show?id=2309405145965467403236
https://weibo.com/ttarticle/p/show?id=2309405145965647757426
https://weibo.com/ttarticle/p/show?id=2309405145965744226858
https://weibo.com/ttarticle/p/show?id=2309405145965844889649
https://weibo.com/ttarticle/p/show?id=2309405145965941359200
https://weibo.com/ttarticle/p/show?id=2309405145966117520126
https://weibo.com/ttarticle/p/show?id=2309405145966218182972
https://weibo.com/ttarticle/p/show?id=2309405145966314652432
https://weibo.com/ttarticle/p/show?id=2309405145966415315200
https://weibo.com/ttarticle/p/show?id=2309405145966511784171
https://weibo.com/ttarticle/p/show?id=2309405145966608253910
https://weibo.com/ttarticle/p/show?id=2309405145966708916256
https://weibo.com/ttarticle/p/show?id=2309405145966805385471
https://weibo.com/ttarticle/p/show?id=2309405145966910242900
https://weibo.com/ttarticle/p/show?id=2309405145967010906404
https://weibo.com/ttarticle/p/show?id=2309405145967107375656
https://weibo.com/ttarticle/p/show?id=2309405145967220621702
https://weibo.com/ttarticle/p/show?id=2309405145967321284852
https://weibo.com/ttarticle/p/show?id=2309405145967426142754
https://weibo.com/ttarticle/p/show?id=2309405145967522612068
https://weibo.com/ttarticle/p/show?id=2309405145967627468911
https://weibo.com/ttarticle/p/show?id=2309405145967728132564
https://weibo.com/ttarticle/p/show?id=2309405145967824601984
https://weibo.com/ttarticle/p/show?id=2309405145967925002250
https://weibo.com/ttarticle/p/show?id=2309405145968021733628
https://weibo.com/ttarticle/p/show?id=2309405145968122396833
https://weibo.com/ttarticle/p/show?id=2309405145968222797869
https://weibo.com/ttarticle/p/show?id=2309405145968327655555
https://weibo.com/ttarticle/p/show?id=2309405145968424387318
https://weibo.com/ttarticle/p/show?id=2309405145968525050236
https://weibo.com/ttarticle/p/show?id=2309405145968625451220
https://weibo.com/ttarticle/p/show?id=2309405145968722182874
https://weibo.com/ttarticle/p/show?id=2309405145968822845886
https://weibo.com/ttarticle/p/show?id=2309405145968923246608
https://weibo.com/ttarticle/p/show?id=2309405145969019978660
https://weibo.com/ttarticle/p/show?id=2309405145969120378944
https://weibo.com/ttarticle/p/show?id=2309405145969217110876
https://weibo.com/ttarticle/p/show?id=2309405145969321967868
https://weibo.com/ttarticle/p/show?id=2309405145969422631034
https://weibo.com/ttarticle/p/show?id=2309405145969519100306
https://weibo.com/ttarticle/p/show?id=2309405145969615569830
https://weibo.com/ttarticle/p/show?id=2309405145969715970132
https://weibo.com/ttarticle/p/show?id=2309405145969812701503
https://weibo.com/ttarticle/p/show?id=2309405145969913102346
https://weibo.com/ttarticle/p/show?id=2309405145970009833740
https://weibo.com/ttarticle/p/show?id=2309405145970106302832
https://weibo.com/ttarticle/p/show?id=2309405145970202509339
https://weibo.com/ttarticle/p/show?id=2309405145970299240535
https://weibo.com/ttarticle/p/show?id=2309405145970395710126
https://weibo.com/ttarticle/p/show?id=2309405145970496373682
https://weibo.com/ttarticle/p/show?id=2309405145970597036088
https://weibo.com/ttarticle/p/show?id=2309405145970693505448
https://weibo.com/ttarticle/p/show?id=2309405145970789974766
https://weibo.com/ttarticle/p/show?id=2309405145970991038719
https://weibo.com/ttarticle/p/show?id=2309405145971091964658
https://weibo.com/ttarticle/p/show?id=2309405145971192365098
https://weibo.com/ttarticle/p/show?id=2309405145971289097078
https://weibo.com/ttarticle/p/show?id=2309405145971532366050
https://weibo.com/ttarticle/p/show?id=2309405145971628835254
https://weibo.com/ttarticle/p/show?id=2309405145971729498160
https://weibo.com/ttarticle/p/show?id=2309405145971830161553
https://weibo.com/ttarticle/p/show?id=2309405145971926368405
https://weibo.com/ttarticle/p/show?id=2309405145972027294716
https://weibo.com/ttarticle/p/show?id=2309405145972127957440
https://weibo.com/ttarticle/p/show?id=2309405145972224426762
https://weibo.com/ttarticle/p/show?id=2309405145972325090210
https://weibo.com/ttarticle/p/show?id=2309405145972429684750
https://weibo.com/ttarticle/p/show?id=2309405145972522222504
https://weibo.com/ttarticle/p/show?id=2309405145972622884967
https://weibo.com/ttarticle/p/show?id=2309405145972723548240
https://weibo.com/ttarticle/p/show?id=2309405145972819755161
https://weibo.com/ttarticle/p/show?id=2309405145972920680606
https://weibo.com/ttarticle/p/show?id=2309405145973021344296
https://weibo.com/ttarticle/p/show?id=2309405145973122007100
https://weibo.com/ttarticle/p/show?id=2309405145973218476720
https://weibo.com/ttarticle/p/show?id=2309405145973319139401
https://weibo.com/ttarticle/p/show?id=2309405145973419802648
https://weibo.com/ttarticle/p/show?id=2309405145973520466636
https://weibo.com/ttarticle/p/show?id=2309405145973621129416
https://weibo.com/ttarticle/p/show?id=2309405145973717598916
https://weibo.com/ttarticle/p/show?id=2309405145973818261517
https://weibo.com/ttarticle/p/show?id=2309405145973914731334
https://weibo.com/ttarticle/p/show?id=2309405145974015131748
https://weibo.com/ttarticle/p/show?id=2309405145974111863412
https://weibo.com/ttarticle/p/show?id=2309405145974212526536
https://weibo.com/ttarticle/p/show?id=2309405145974312927245
https://weibo.com/ttarticle/p/show?id=2309405145974409658984
https://weibo.com/ttarticle/p/show?id=2309405145974505865387
https://weibo.com/ttarticle/p/show?id=2309405145974606791005
https://weibo.com/ttarticle/p/show?id=2309405145974707453954
https://weibo.com/ttarticle/p/show?id=2309405145974904586964
https://weibo.com/ttarticle/p/show?id=2309405145975004987519
https://weibo.com/ttarticle/p/show?id=2309405145975101718912
https://weibo.com/ttarticle/p/show?id=2309405145975198187958
https://weibo.com/ttarticle/p/show?id=2309405145975391125575
https://weibo.com/ttarticle/p/show?id=2309405145975487332513
https://weibo.com/ttarticle/p/show?id=2309405145975584064068
https://weibo.com/ttarticle/p/show?id=2309405145975680532601
https://weibo.com/ttarticle/p/show?id=2309405145975781195819
https://weibo.com/ttarticle/p/show?id=2309405145975881859126
https://weibo.com/ttarticle/p/show?id=2309405145975978328206
https://weibo.com/ttarticle/p/show?id=2309405145976074797714
https://weibo.com/ttarticle/p/show?id=2309405145976175460430
https://weibo.com/ttarticle/p/show?id=2309405145976271667337
https://weibo.com/ttarticle/p/show?id=2309405145976380981423
https://weibo.com/ttarticle/p/show?id=2309405145976477450433
https://weibo.com/ttarticle/p/show?id=2309405145976573919493
https://weibo.com/ttarticle/p/show?id=2309405145976674582583
https://weibo.com/ttarticle/p/show?id=2309405145976771052048
https://weibo.com/ttarticle/p/show?id=2309405145976871452702
https://weibo.com/ttarticle/p/show?id=2309405145976967921936
https://weibo.com/ttarticle/p/show?id=2309405145977068847190
https://weibo.com/ttarticle/p/show?id=2309405145977165316912
https://weibo.com/ttarticle/p/show?id=2309405145977261785942
https://weibo.com/ttarticle/p/show?id=2309405145977362186260
https://weibo.com/ttarticle/p/show?id=2309405145977458917906
https://weibo.com/ttarticle/p/show?id=2309405145977555387070
https://weibo.com/ttarticle/p/show?id=2309405145977656049986
https://weibo.com/ttarticle/p/show?id=2309405145977752256569
https://weibo.com/ttarticle/p/show?id=2309405145977853182372
https://weibo.com/ttarticle/p/show?id=2309405145977949651998
https://weibo.com/ttarticle/p/show?id=2309405145978050314260
https://weibo.com/ttarticle/p/show?id=2309405145978146783240
https://weibo.com/ttarticle/p/show?id=2309405145978243252782
https://weibo.com/ttarticle/p/show?id=2309405145978343915716
https://weibo.com/ttarticle/p/show?id=2309405145978440122481
https://weibo.com/ttarticle/p/show?id=2309405145978536853648
https://weibo.com/ttarticle/p/show?id=2309405145978633323180
https://weibo.com/ttarticle/p/show?id=2309405145978733986106
https://weibo.com/ttarticle/p/show?id=2309405145978830455354
https://weibo.com/ttarticle/p/show?id=2309405145978935312534
https://weibo.com/ttarticle/p/show?id=2309405145979035976498
https://weibo.com/ttarticle/p/show?id=2309405145979136639494
https://weibo.com/ttarticle/p/show?id=2309405145979237302502
https://weibo.com/ttarticle/p/show?id=2309405145979333771718
https://weibo.com/ttarticle/p/show?id=2309405145979434434714
https://weibo.com/ttarticle/p/show?id=2309405145979530904086
https://weibo.com/ttarticle/p/show?id=2309405145979631566895
https://weibo.com/ttarticle/p/show?id=2309405145979728036808
https://weibo.com/ttarticle/p/show?id=2309405145979828437056
https://weibo.com/ttarticle/p/show?id=2309405145979925169100
https://weibo.com/ttarticle/p/show?id=2309405145980025832100
https://weibo.com/ttarticle/p/show?id=2309405145980126494876
https://weibo.com/ttarticle/p/show?id=2309405145980222964716
https://weibo.com/ttarticle/p/show?id=2309405145980323365005
https://weibo.com/ttarticle/p/show?id=2309405145980424028172
https://weibo.com/ttarticle/p/show?id=2309405145980520760264
https://weibo.com/ttarticle/p/show?id=2309405145980625617019
https://weibo.com/ttarticle/p/show?id=2309405145980730474792
https://weibo.com/ttarticle/p/show?id=2309405145980826681413
https://weibo.com/ttarticle/p/show?id=2309405145980927607130
https://weibo.com/ttarticle/p/show?id=2309405145981024076394
https://weibo.com/ttarticle/p/show?id=2309405145981124739342
https://weibo.com/ttarticle/p/show?id=2309405145981220946270
https://weibo.com/ttarticle/p/show?id=2309405145981321872088
https://weibo.com/ttarticle/p/show?id=2309405145981422534708
https://weibo.com/ttarticle/p/show?id=2309405145981518741567
weibo.com/ttarticle/p/show?id=2309405145963424777020
weibo.com/ttarticle/p/show?id=2309405145963525177411
weibo.com/ttarticle/p/show?id=2309405145963621646486
weibo.com/ttarticle/p/show?id=2309405145963722571852
weibo.com/ttarticle/p/show?id=2309405145963819040893
weibo.com/ttarticle/p/show?id=2309405145963986550896
weibo.com/ttarticle/p/show?id=2309405145964087476324
weibo.com/ttarticle/p/show?id=2309405145964183945932
weibo.com/ttarticle/p/show?id=2309405145964284346398
weibo.com/ttarticle/p/show?id=2309405145964381078116
weibo.com/ttarticle/p/show?id=2309405145964578209840
weibo.com/ttarticle/p/show?id=2309405145964674416686
weibo.com/ttarticle/p/show?id=2309405145964771148142
weibo.com/ttarticle/p/show?id=2309405145964871811454
weibo.com/ttarticle/p/show?id=2309405145964980601070
weibo.com/ttarticle/p/show?id=2309405145965077070196
weibo.com/ttarticle/p/show?id=2309405145965177733256
weibo.com/ttarticle/p/show?id=2309405145965274464638
weibo.com/ttarticle/p/show?id=2309405145965370934068
weibo.com/ttarticle/p/show?id=2309405145965467403236
weibo.com/ttarticle/p/show?id=2309405145965647757426
weibo.com/ttarticle/p/show?id=2309405145965744226858
weibo.com/ttarticle/p/show?id=2309405145965844889649
weibo.com/ttarticle/p/show?id=2309405145965941359200
weibo.com/ttarticle/p/show?id=2309405145966117520126
weibo.com/ttarticle/p/show?id=2309405145966218182972
weibo.com/ttarticle/p/show?id=2309405145966314652432
weibo.com/ttarticle/p/show?id=2309405145966415315200
weibo.com/ttarticle/p/show?id=2309405145966511784171
weibo.com/ttarticle/p/show?id=2309405145966608253910
weibo.com/ttarticle/p/show?id=2309405145966708916256
weibo.com/ttarticle/p/show?id=2309405145966805385471
weibo.com/ttarticle/p/show?id=2309405145966910242900
weibo.com/ttarticle/p/show?id=2309405145967010906404
weibo.com/ttarticle/p/show?id=2309405145967107375656
weibo.com/ttarticle/p/show?id=2309405145967220621702
weibo.com/ttarticle/p/show?id=2309405145967321284852
weibo.com/ttarticle/p/show?id=2309405145967426142754
weibo.com/ttarticle/p/show?id=2309405145967522612068
weibo.com/ttarticle/p/show?id=2309405145967627468911
weibo.com/ttarticle/p/show?id=2309405145967728132564
weibo.com/ttarticle/p/show?id=2309405145967824601984
weibo.com/ttarticle/p/show?id=2309405145967925002250
weibo.com/ttarticle/p/show?id=2309405145968021733628
weibo.com/ttarticle/p/show?id=2309405145968122396833
weibo.com/ttarticle/p/show?id=2309405145968222797869
weibo.com/ttarticle/p/show?id=2309405145968327655555
weibo.com/ttarticle/p/show?id=2309405145968424387318
weibo.com/ttarticle/p/show?id=2309405145968525050236
weibo.com/ttarticle/p/show?id=2309405145968625451220
weibo.com/ttarticle/p/show?id=2309405145968722182874
weibo.com/ttarticle/p/show?id=2309405145968822845886
weibo.com/ttarticle/p/show?id=2309405145968923246608
weibo.com/ttarticle/p/show?id=2309405145969019978660
weibo.com/ttarticle/p/show?id=2309405145969120378944
weibo.com/ttarticle/p/show?id=2309405145969217110876
weibo.com/ttarticle/p/show?id=2309405145969321967868
weibo.com/ttarticle/p/show?id=2309405145969422631034
weibo.com/ttarticle/p/show?id=2309405145969519100306
weibo.com/ttarticle/p/show?id=2309405145969615569830
weibo.com/ttarticle/p/show?id=2309405145969715970132
weibo.com/ttarticle/p/show?id=2309405145969812701503
weibo.com/ttarticle/p/show?id=2309405145969913102346
weibo.com/ttarticle/p/show?id=2309405145970009833740
weibo.com/ttarticle/p/show?id=2309405145970106302832
weibo.com/ttarticle/p/show?id=2309405145970202509339
weibo.com/ttarticle/p/show?id=2309405145970299240535
weibo.com/ttarticle/p/show?id=2309405145970395710126
weibo.com/ttarticle/p/show?id=2309405145970496373682
weibo.com/ttarticle/p/show?id=2309405145970597036088
weibo.com/ttarticle/p/show?id=2309405145970693505448
weibo.com/ttarticle/p/show?id=2309405145970789974766
weibo.com/ttarticle/p/show?id=2309405145970991038719
weibo.com/ttarticle/p/show?id=2309405145971091964658
weibo.com/ttarticle/p/show?id=2309405145971192365098
weibo.com/ttarticle/p/show?id=2309405145971289097078
weibo.com/ttarticle/p/show?id=2309405145971532366050
weibo.com/ttarticle/p/show?id=2309405145971628835254
weibo.com/ttarticle/p/show?id=2309405145971729498160
weibo.com/ttarticle/p/show?id=2309405145971830161553
weibo.com/ttarticle/p/show?id=2309405145971926368405
weibo.com/ttarticle/p/show?id=2309405145972027294716
weibo.com/ttarticle/p/show?id=2309405145972127957440
weibo.com/ttarticle/p/show?id=2309405145972224426762
weibo.com/ttarticle/p/show?id=2309405145972325090210
weibo.com/ttarticle/p/show?id=2309405145972429684750
weibo.com/ttarticle/p/show?id=2309405145972522222504
weibo.com/ttarticle/p/show?id=2309405145972622884967
weibo.com/ttarticle/p/show?id=2309405145972723548240
weibo.com/ttarticle/p/show?id=2309405145972819755161
weibo.com/ttarticle/p/show?id=2309405145972920680606
weibo.com/ttarticle/p/show?id=2309405145973021344296
weibo.com/ttarticle/p/show?id=2309405145973122007100
weibo.com/ttarticle/p/show?id=2309405145973218476720
weibo.com/ttarticle/p/show?id=2309405145973319139401
weibo.com/ttarticle/p/show?id=2309405145973419802648
weibo.com/ttarticle/p/show?id=2309405145973520466636
weibo.com/ttarticle/p/show?id=2309405145973621129416
weibo.com/ttarticle/p/show?id=2309405145973717598916
weibo.com/ttarticle/p/show?id=2309405145973818261517
weibo.com/ttarticle/p/show?id=2309405145973914731334
weibo.com/ttarticle/p/show?id=2309405145974015131748
weibo.com/ttarticle/p/show?id=2309405145974111863412
weibo.com/ttarticle/p/show?id=2309405145974212526536
weibo.com/ttarticle/p/show?id=2309405145974312927245
weibo.com/ttarticle/p/show?id=2309405145974409658984
weibo.com/ttarticle/p/show?id=2309405145974505865387
weibo.com/ttarticle/p/show?id=2309405145974606791005
weibo.com/ttarticle/p/show?id=2309405145974707453954
weibo.com/ttarticle/p/show?id=2309405145974904586964
weibo.com/ttarticle/p/show?id=2309405145975004987519
weibo.com/ttarticle/p/show?id=2309405145975101718912
weibo.com/ttarticle/p/show?id=2309405145975198187958
weibo.com/ttarticle/p/show?id=2309405145975391125575
weibo.com/ttarticle/p/show?id=2309405145975487332513
weibo.com/ttarticle/p/show?id=2309405145975584064068
weibo.com/ttarticle/p/show?id=2309405145975680532601
weibo.com/ttarticle/p/show?id=2309405145975781195819
weibo.com/ttarticle/p/show?id=2309405145975881859126
weibo.com/ttarticle/p/show?id=2309405145975978328206
weibo.com/ttarticle/p/show?id=2309405145976074797714
weibo.com/ttarticle/p/show?id=2309405145976175460430
weibo.com/ttarticle/p/show?id=2309405145976271667337
weibo.com/ttarticle/p/show?id=2309405145976380981423
weibo.com/ttarticle/p/show?id=2309405145976477450433
weibo.com/ttarticle/p/show?id=2309405145976573919493
weibo.com/ttarticle/p/show?id=2309405145976674582583
weibo.com/ttarticle/p/show?id=2309405145976771052048
weibo.com/ttarticle/p/show?id=2309405145976871452702
weibo.com/ttarticle/p/show?id=2309405145976967921936
weibo.com/ttarticle/p/show?id=2309405145977068847190
weibo.com/ttarticle/p/show?id=2309405145977165316912
weibo.com/ttarticle/p/show?id=2309405145977261785942
weibo.com/ttarticle/p/show?id=2309405145977362186260
weibo.com/ttarticle/p/show?id=2309405145977458917906
weibo.com/ttarticle/p/show?id=2309405145977555387070
weibo.com/ttarticle/p/show?id=2309405145977656049986
weibo.com/ttarticle/p/show?id=2309405145977752256569
weibo.com/ttarticle/p/show?id=2309405145977853182372
weibo.com/ttarticle/p/show?id=2309405145977949651998
weibo.com/ttarticle/p/show?id=2309405145978050314260
weibo.com/ttarticle/p/show?id=2309405145978146783240
weibo.com/ttarticle/p/show?id=2309405145978243252782
weibo.com/ttarticle/p/show?id=2309405145978343915716
weibo.com/ttarticle/p/show?id=2309405145978440122481
weibo.com/ttarticle/p/show?id=2309405145978536853648
weibo.com/ttarticle/p/show?id=2309405145978633323180
weibo.com/ttarticle/p/show?id=2309405145978733986106
weibo.com/ttarticle/p/show?id=2309405145978830455354
weibo.com/ttarticle/p/show?id=2309405145978935312534
weibo.com/ttarticle/p/show?id=2309405145979035976498
weibo.com/ttarticle/p/show?id=2309405145979136639494
weibo.com/ttarticle/p/show?id=2309405145979237302502
weibo.com/ttarticle/p/show?id=2309405145979333771718
weibo.com/ttarticle/p/show?id=2309405145979434434714
weibo.com/ttarticle/p/show?id=2309405145979530904086
weibo.com/ttarticle/p/show?id=2309405145979631566895
weibo.com/ttarticle/p/show?id=2309405145979728036808
weibo.com/ttarticle/p/show?id=2309405145979828437056
weibo.com/ttarticle/p/show?id=2309405145979925169100
weibo.com/ttarticle/p/show?id=2309405145980025832100
weibo.com/ttarticle/p/show?id=2309405145980126494876
weibo.com/ttarticle/p/show?id=2309405145980222964716
weibo.com/ttarticle/p/show?id=2309405145980323365005
weibo.com/ttarticle/p/show?id=2309405145980424028172
weibo.com/ttarticle/p/show?id=2309405145980520760264
weibo.com/ttarticle/p/show?id=2309405145980625617019
weibo.com/ttarticle/p/show?id=2309405145980730474792
weibo.com/ttarticle/p/show?id=2309405145980826681413
weibo.com/ttarticle/p/show?id=2309405145980927607130
weibo.com/ttarticle/p/show?id=2309405145981024076394
weibo.com/ttarticle/p/show?id=2309405145981124739342
weibo.com/ttarticle/p/show?id=2309405145981220946270
weibo.com/ttarticle/p/show?id=2309405145981321872088
weibo.com/ttarticle/p/show?id=2309405145981422534708
weibo.com/ttarticle/p/show?id=2309405145981518741567


程序员小锋
1 声望1 粉丝