码迷,mamicode.com
首页 > 其他好文 > 详细

跨域访问导致导致当前平台用户掉线的问题

时间:2016-07-11 20:53:41      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

1、问题代码

<form action="http://localhost:8020/social/webcast/meetLiving" method="post" target="_blank" style="display: none;" id=‘{{"sbmt" + $index}}‘>
                        <input type="text" value="${jwtToken}" name="X-BMK-Auth-Token">
                        <input type="text" name="webinar_id" :value="info.webinar_id">
                        <input type="submit">
                    </form>

在本地测试的时候,我起了两个项目,用这种方式访问的时候会导致当前用户退出。

2、解决方式

<form action="http://192.168.8.22:8020/social/webcast/meetLiving" method="post" target="_blank" style="display: none;" id=‘{{"sbmt" + $index}}‘>
                        <input type="text" value="${jwtToken}" name="X-BMK-Auth-Token">
                        <input type="text" name="webinar_id" :value="info.webinar_id">
                        <input type="submit">
                    </form>

将localhost改成ip即可,原因目前不知,我用的是abutu系统,不知道window寸步存在类似问题

跨域访问导致导致当前平台用户掉线的问题

标签:

原文地址:http://www.cnblogs.com/sunjf/p/5661316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!