Quantcast
Channel: Cocos中文社区 - 最新主题
Viewing all articles
Browse latest Browse all 88737

Creator 创建的登录页面,通过网络请求,如何实现页面重定向。

$
0
0

@electricity 写道:


     var xhr = cc.loader.getXMLHttpRequest();  
        var data = "userName=" + self.editBoxName.string  + "&passWord=" + self.editBoxPassword.string;  
          
        //2  
        xhr.open("post", "192.168.1.199/Home/User/login", true);  
        //!------------------!注意  
        xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");  
        //3  
        xhr.onreadystatechange = function () {  
            if (xhr.readyState == 4) {  
                if (xhr.status == 200) {  
                    var m = xhr.responseText;  
                    var response = xhr.responseText.substring(0, 100) + "...";  
                    console.log (m);  
                }
            }  
        }  
        
     xhr.send(data);

通过post 进行服务器请求,

后台服务器是thinkPHP的。
redirect('../Game/index', 5, '页面跳转中...'); 正常的通过这句话就可以实现浏览器的重定向。
但是Creator 的请求就无法实现重定向的功能。
求哪位大神能帮我解决了。我实在是没办法了。 浏览器不能跳转。所有的页面都白写了。。。。。
帮我想出来解决方案也行。
憋的不行了。。。。。。

帖子: 1

参与者: 1

阅读整个主题


Viewing all articles
Browse latest Browse all 88737

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>