2020-02-11

庚子年 戊寅月 甲申日

描述

mybatis复习,微信项目搭建

技术总结:https://blog.csdn.net/qq_40674583/article/details/104272075

Ps:一开始写的没有保存,软件蹦了,写的全没了,难受。。。。。。。简单补一下

mybatis

Maven



    4.0.0

    org.example
    z_13_mybatis
    1.0-SNAPSHOT

    
        
            mysql
            mysql-connector-java
            5.1.48
        

        
            org.mybatis
            mybatis
            3.5.4
        

        
            junit
            junit
            4.13
            test
        
    

    
        
            
                 src/main/java 
                
                     **/*.properties 
                     **/*.xml 
                
                 false 
            
        
    

maven依赖和xml过滤

xml文件配置

mybatis-config.xml






    
    
    
        
   

   
   
      
      
         
         
         
         
            
            
            
            
         
      
      
         
         
         
         
             
            
            
            
         
      
   
  

mapper.xml





   
   

核心配置文件映射文件 ------- 记得映射文件要在配置文件中注册

微信登录

思路

流程图

2020-02-11_第1张图片

核心代理

##### 路由守卫

router.beforeEach((to,from,next) => {
  if(to.path == '/author' && store.state.wx.openid != ''){
    // 用户使用后退返回到授权页,则默认回到首页
    next('/wx/md/center')
    return false
  }
  if(store.state.wx.openid === '' && to.path != '/author'){
    // 之前有获取过授权
    Cookies.set('url', to.fullPath);
    next('/author')
    return false
  }
  next()
});

##### author.vue




你可能感兴趣的:(2020-02-11)