摘要: vue实现消息向上无缝滚动效果 ... 样式 .new-list{ line-height: 28px; transition: top 0.5s; } .anim{ transition: all 0.5s; margin-top: -28px;//高度等于行高 } 阅读全文
posted @ 2018-11-20 12:01 conglvse 阅读(5646) 评论(0) 推荐(0) 编辑
摘要: 因为后端需要用到cookie做一些判断,所以在post请求前先写入了cookie。在页面未登录时,调接口能带上cookie,登录后的请求没有携带cookie,但是能看到cookie已经保存了。 (axios.defaults.withCredentials = true 配置了并没有用) 对比登录前后,发现是cookie路径的问题。如下: 登录之前的cookie一直保存在/下面,但是登录... 阅读全文
posted @ 2018-11-20 10:46 conglvse 阅读(6679) 评论(0) 推荐(0) 编辑