handlerClick(){
fountModule.startFountServe(e=>{
if(!e){
uni.showToast({
title:"没有数据",
icon:'none'
})
} else {
console.log(JSON.stringify(e))
uni.showToast({
title:JSON.stringify(e),
icon:'none'
})
}
});
}
可以打印返回数据但是不能调起安卓原生前台服务
Context context = this.mUniSDKInstance.getContext();
Intent intent = new Intent(context, FountServer.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
context.startForegroundService(intent);
} else {
context.startService(intent);
}
service 已在app/manifest 注册,也有前台服务权限
1 个回复
4***@qq.com
顶起 希望官方出面解决下