博客列表 >系统控制—清除历史消息

系统控制—清除历史消息

弘德誉曦的博客
弘德誉曦的博客原创
2021年08月01日 22:26:36711浏览

系统控制—清除历史消息

  1. system_ctl:{
  2. init(cmd){
  3. if(cmd.indexOf(':set=') == 0){
  4. var method = cmd.substr(5);
  5. if(typeof(register.system_ctl[method]) == 'function') return true;
  6. return false;
  7. }
  8. },
  9. /**
  10. * 清除历史消息
  11. * 用法:
  12. * 在sendMsg中嵌入
  13. * if(register.system_ctl.clear_history(that.cData.message)) return false;
  14. */
  15. clear_history(cmd){
  16. if(register.system_ctl.init(cmd)){
  17. register.removeStorage(register.storage_key[0]);
  18. register.removeStorage(register.storage_key[1]);
  19. uni.showToast({
  20. title:"清除历史消息成功!"
  21. })
  22. return true;
  23. }
  24. return false;
  25. }
  26. },
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议