现象描述
如今车机上的应用越来越多,也越来越智能化,已经离不开网络。当网络有任何变化时,需要给用户提醒。
实现方式
调用network.subscribe监听网络连接,一旦发生网络变化,会立即执行其回调方法callback。车机应用需要立即提示用户正常连接网络。
listenNetwork: function () {
var that = this
network.subscribe({
callback: function (ret) {
that.currentType = JSON.stringify(ret)
prompt.showToast({ message: that.componentData.listenSuccess + JSON.stringify(ret) })
},
fail: function (erromsg, errocode) {
prompt.showToast({ message: that.componentData.listenFailed + errocode + ': ' + erromsg })
console.log('network.subscribe----------' + errocode + ': ' + erromsg)
}
})
},
欲了解更多更全技术文章,欢迎访问https://developer.huawei.com/consumer/cn/forum/?ha_source=zzh
标签:function,network,车机,网络,ret,subscribe,应用,监听 From: https://www.cnblogs.com/developer-huawei/p/16935066.html