初始方案
if(this.objValue!==""){ this.modify(); this.viewer.clock.currentTime = this.viewer.clock.startTime;//归位至起始位置 this.viewer.clock.shouldAnimate = true;//运动 this.viewer.entities.removeAll(); this.move(); }else{ this.viewer.clock.currentTime = this.viewer.clock.startTime; this.viewer.clock.shouldAnimate = true; this.viewer.entities.removeAll(); this.move(); }
优化后
start(){ if(this.objValue!==""){ this.modify(); } this.viewer.clock.currentTime = this.viewer.clock.startTime; this.viewer.clock.shouldAnimate = true; this.viewer.entities.removeAll(); this.move(); },
到此这篇js关于if-else的逻辑使用优化的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!
版权声明:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权、违法违规、事实不符,请将相关资料发送至xkadmin@xkablog.com进行投诉反馈,一经查实,立即处理!
转载请注明出处,原文链接:https://www.xkablog.com/qdvuejs/11298.html