Uniapp如何实现持续定位,全程录音功能

持续定位和全程录音都需要息屏运行,切后台运行的应用保活。说到保活,这里博大精深。就不展开说了,本着对用户负责的态度开发一款好产品,在用户允许的前提下,提高用户体验。这里介绍启动前台 Service 的技巧。

添加本地插件

在根目录下创建文件夹【nativeplugins】,把 https://github.com/jeawy/UniPlugin-Hello-AS 中 zjw-frontservice 文件夹放进去。

manifest.json 点开,选择本地插件,把此插件添加进去

制作自定义基座

编辑器中选中:运行 -> 选择【运行到安卓模拟机】-> 选择【制作自定义调试基座】

运行到真机

其他可操作的功能:
退出时,友好的提示用户,离开此应用的话,会导致服务中断,可以提供选择到后台运行的选项

main.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// #ifdef APP-PLUS
<view class="modal-footer">
<text>有任务在进行中,是否退出? </text>
</view>
<view class="modal-footer">
<text @click.stop="confirm">后台运行</text>
<text @click.stop="cancel">取消</text>
<text @click.stop="exit">退出</text>
</view>

// methods
confirm(){
let main = plus.android.runtimeMainActivity()
main.moveTaskToBack(false);
}
exit(){
plus.runtime.quit();
}
cancel{
// 模态框消失
}
// #endif

开发代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<script>
const frontservice = uni.requireNativePlugin('zjw-frontservice');
const recorderManager = uni.getRecorderManager();
const innerAudioContext = uni.createInnerAudioContext();

innerAudioContext.autoplay = true;

export default {
data() {
return {
voicePath: '',
};
},
onLoad() {
let self = this;
recorderManager.onStop(function (res) {
console.log('recorder stop' + JSON.stringify(res));
self.voicePath = res.tempFilePath;
});
},
methods: {
stop() {
frontservice.stop({}, (result) => {
modal.toast({
message: 'closed',
duration: 1.5,
});
});
},
start() {
frontservice.start(
{
title: '请不要关闭此固定通知栏',
content: '正在定位...',
delaysec: 2000,
isIgnoringBattery: false, //不开启电池优化
},
(result) => {
console.log(result);
// 录音代码
this.startRecord();
}
);
},
startRecord() {
// 授权录音权限
let env = uni.getSystemInfoSync().platform;
permision
.requestAndroidPermission('android.permission.RECORD_AUDIO')
.then((e) => {
if (e === -1) {
uni.showToast({
title: '您已经永久拒绝录音权限,请在应用设置中手动打开',
icon: 'none',
});
} else if (e === 0) {
uni.showToast({
title: '您拒绝了录音授权',
icon: 'none',
});
} else if (e === 1) {
this.show = true;
console.log('开始录音');

recorderManager.start();

console.log('开始定位');
uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
}
});
} else {
uni.showToast({
title: '授权返回值错误',
icon: 'none',
});
}
})
.catch((err) => {
uni.showToast({
title: '拉起录音授权失败',
icon: 'none',
});
});
},
// 上传录音文件
uploadRecord() {
uni.showLoading();
uni.uploadFile({
url, '地址',
filePath: this.voicePath, //录音结束后返回的临时路径
name: 'file', // 文件对应的 key值对象名称
header: {
'Content-Type': 'multipart/form-data',
token: 'token', //token信息
},
success: (res) => {
uni.hideLoading();
console.log('result', result);
},
fail: (res) => {
uni.hideLoading();
uni.showToast({
title: '失败',
icon: 'none',
});
},
});
},
},
};
</script>

其他阅读

uniapp中接入融云-IM 云服务 在GitHub上学习系列之AI课程

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×