Преглед на файлове

0106 推送集成设置别名规则masterId_userId

0107
tags/0.0.3+6
23028876916@qq.com преди 3 години
committed by “yanghuaxuan”
родител
ревизия
fd7396b91f
променени са 1 файла, в които са добавени 6 реда и са изтрити 5 реда
  1. +6
    -5
      lib/pages/home_page/home_page.dart

+ 6
- 5
lib/pages/home_page/home_page.dart Целия файл

@@ -122,11 +122,13 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver, Ticker
_eventChannel.receiveBroadcastStream().listen(_onEvent, onError: _onError);

MobPushUtil.addPushReceiver();
EventUtil.instance.on<LoginSuccessEvent>().listen((event) {
EventUtil.instance.on<LoginSuccessEvent>().listen((event) async {
UserInfoModel userInfo = UserInfoNotifier?.staitcUserInfo;
Logger.log("我的TOKEN5: " + userInfo?.userId);
if (!EmptyUtil.isEmpty(userInfo.userId)) {
MobPushUtil.setAlias(userInfo.userId);
var setting = await NativeUtil.getSetting();
String masterId = setting['master_id'];
Logger.log("我的Alias: " + masterId + "_" + userInfo?.userId);
if (!EmptyUtil.isEmpty(userInfo.userId) && !EmptyUtil.isEmpty(masterId)) {
MobPushUtil.setAlias(masterId + "_" + userInfo.userId);
}
});

@@ -154,7 +156,6 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver, Ticker
}
}


@override
void dispose() {
WidgetsBinding.instance.removeObserver(this);


Зареждане…
Отказ
Запис