0

我的客户端应用程序首先从 login.html 页面获取 user_ID 和密码,然后在按下“登录”按钮时,函数“display()”从输入字段运行存储的 ID 和密码并将其发送到服务器。服务器批准登录 ID 和密码并尝试发送 index.html 页面。但我无法发送 index.html 页面。可能是我的 HTML 代码或服务器端缺少某些内容。

我的 HTML(引导)代码是;

          <input type="text" id="user_id" class="form-control input-lg" placeholder="User ID" >

          <input type="password" id="password_id" class="form-control input-lg" placeholder="Password" >

          <button class="btn btn-primary btn-lg btn-block" onclick="Display()" > Sign In link</button>

JavaScript“显示()”函数:

        <script>

    function Display(){
                var ID = document.getElementById("user_id").value;
                var passwrd = document.getElementById("password_id").value;
                var login = "/login:" + ID + "-" + passwrd + "--" ;

                var http = new XMLHttpRequest();
        http.open("GET", login, true); 
        http.onreadystatechange = function() {          if(http.readyState == 4 && http.status == 200) {
               var data = http.responseText;
                        if (data=="0"){
            document.getElementById("info_id").innerHTML =  "wrong password";
            } 
                        else if (data=="1"){
            document.getElementById("info_id").innerHTML =  "logging in as Admin";
            page();
            }           

        }
        }
        http.send(null); 
             }
    function page(){
        var request = new XMLHttpRequest();
        request.onreadystatechange = function() {
            if (request.readyState === 4) {
            if (request.status === 200) {
                //document.body.className = 'ok';
                //console.log(request.responseText);
            } else {
                //document.body.className = 'error';
            }
            }
        };
        request.open("GET", "index.html" , true);
        request.send(null);

      }
    </script>

Python baseHTTPServer 代码是:

class MyHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_HEAD(s):
    s.send_response(200)
    s.send_header("Content-type", "text/html")
    s.end_headers()


def do_GET(s):
    HTTP_request=s.requestline
    index_1=HTTP_request.index("GET /")
    index_2=HTTP_request.index(" HTTP/1.1")
    file_name=HTTP_request[index_1+5:index_2]
    print 'HTTP_request:',HTTP_request 
    if HTTP_request.find('login')>-1:
        print 'got', file_name  # file name is formatted as "login:anum-1234--"
        ID = file_name[6:file_name.find('-')]
        password = file_name[file_name.find('-')+1:file_name.find('--')]
        if ID == "anum" and password == "1234":
            admin = 1
            print 'admin ENTERED'  # <--working till here
            file1=open('index.html','r')
            file_read=file1.read()
            s.send_response(301)
            s.send_header('Location','http://index.html') # <- is it correct this way ?
            #s.send_header('Location',file_read)  ## <- or this way
            s.end_headers() 
        else:
            admin = 0  
            s.wfile.write("0")

任何形式的帮助将不胜感激,在此先感谢:)

4

0 回答 0