As shown in the figure, the parameter in ajax is added with "@ web". Why does the front end still not appear to be added?


    function createChat(callback) {
        sessionId=sessionStorage.sessionId;
        customno =sessionStorage.customno;
        
        
        $.ajax({
                    url : "../hf/chat/conn",
                    type : "post",
                    data : {
                        sessionId :sessionId,
                        customno : customno+"@web",
                        srcChannel : sessionStorage.channelFlag
                    },
                    success : function(response) {
                        if ($.isFunction(callback))
                            callback(response)
//                         getServerMsg();
                    }
                });
    }

Sep.07,2021

determine the request of this code that your page responds to?
splice it up and try

is your page processed before it reaches the client?


var sessionId = sessionStorage.customno + "@ web"

Menu