简单工厂模式
1)简单工厂模式的设计方案:定义一个可以实例化Phone对象的类,封建创建对象的代码。 2)看示例代码 手机标准类Phone:
public interface Phone {void make();
}小米产品手机:
public class MiPhone imp…
如果程序输出下方的log或者弹出程序无响应就表示遇到了ANR
020-07-11 23:18:19.131 1232-28781/? E/ActivityManager: ANR in com.test (com.test/.MainActivity)PID: 28502Reason: Input dispatching timed out (Waiting to send non-key event because the touched window …
效果图 1、没有加守卫的页面可以直接进入
2、加了守卫的页面需要验证 我这里使用的是弹框,实例开发时,可以改为跳到登陆页
具体实现:
1、准备步骤
新建angular项目
ng new angularDeom --skip-install
cd angularDemo
cnpm i2、创建路由守卫
2.1、创建
ng g guard …