<div class="dialog-comment-list-box"><div class="loading-img"><table><tr><td><img src="/static/imghwm/default1.png" data-src="tpl/default/img/loading.gif" class="lazy" alt="loading"><p>正在加载联系人</p></td></tr></table></div><ul class="dialog-comment-list"><!-- <li class="dialog-comment-list-item">what's going on?</li><li class="dialog-comment-list-item reply">what's going on?</li><li class="dialog-comment-list-item">what's this?</li><li class="dialog-comment-list-item">what's this?</li><li class="dialog-comment-list-item reply">???</li><li class="dialog-comment-list-item"><img src="/static/imghwm/default1.png" data-src="http://pic.yupoo.com/huang-yu/DFR1RRtM/small.jpg" class="lazy" alt="pic"></li> --></ul><!-- /.dialog-comment-list --></div><div class="dialog-comment-edit"><textarea name="" id="edit"></textarea></div><!-- /.dialog-comment-edit --><div class="site-im-dialog-footer"><div class="for-post" data-toggle="popover" data-content="<small>写点什么再发吧!</small>"><kbd><kbd>Ctrl</kbd>+<kbd>Enter</kbd></kbd><button class="btn btn-success btn-sm" id="post-reply"><i class="fa fa-paper-plane"></i> 发送</button></div></div><!-- /.site-im-dialog-footer --></div>
/** * 发送信息/获取信息 */// 清除定时器function clearChatTimers(id){ if(id){ //请除指定用户定时执行 if(aPChatTimers[id]){ clearTimeout(aPChatTimers[id]); loadFlag = false;// console.log('clear:'+aPChatTimers[id]); } }else{ //请除所有用户定时执行 for (var i=0;i<aPChatTimers.length;i++){ if(aPChatTimers[i]){ loadFlag = false; clearTimeout(aPChatTimers[i]);// console.log('clear:'+aPChatTimers[i]); } } } };/*uid *//** * 返回接收者Id * @returns */function getRecipientIdFromReplyBtn(){ var uid = $.trim($("#post-reply").attr('data-send-uid')); if(uid == undefined||uid ==''){ uid = false; } return uid;}/** * 清空发送的文本内容 * @returns */function clearInputMessage(){ $("#edit").val(''); $("#post-reply").focus();}/** * 获取发送的文本内容 * @returns */function getInputMessage(){ var sMsg = $.trim($("#edit").val()); if(sMsg == undefined||sMsg ==''){ sMsg = false; } return sMsg;}//发送信息 function sendPrivateMessages(){ var uid,message; uid = getRecipientIdFromReplyBtn(); message = getInputMessage(); if(message === false){ $('.for-post').popover('show'); $("#edit").focus(function() { $('.for-post').popover('hide'); }); return false; } $("#post-reply").attr('disabled','disabled'); clearChatTimers(0); //index.php?do=webim&action=send_messages POST $.post('index.php?do=webim',{action:'send_messages',uid:uid,sMessage:message}, function(json) { if(json.status == '1'){ if($('.dialog-comment-list').find('li').length >0){ var _scrollHeight = $('.dialog-comment-list').find('li').last().offset().top; $("#post-reply").closest('.site-im-dialog').find('.dialog-comment-list').animate({zoom:1},function(){ $(".dialog-comment-list-box").data('jsp').scrollTo(0, _scrollHeight); }); } $("#post-reply").removeAttr('disabled'); clearInputMessage(); clearChatTimers(0); getPrivateMessages(uid); }else{ tipsOp(json.msg,'error'); $("#post-reply").removeAttr('disabled'); } },'json');}
返回 {"msg":"\u53d1\u9001\u6210\u529f","status":"1","data":[]}
单击发送或 Ctrl+Enter 按钮不抬起 (如图)
如何才能单击发送按钮或者按CTRL+ENTER 把数据POST到php处理 求PHP代码
回复讨论(解决方案)
你这代码是啥问题 后台获取不到还是啥?说得具体点。
你这代码是啥问题 后台获取不到还是啥?说得具体点。
php 获取不到
你这代码是啥问题 后台获取不到还是啥?说得具体点。
HTML代码
<button class="btn btn-success btn-sm" id="post-reply"><i class="fa fa-paper-plane"></i> 发送</button>
//发送信息 function sendPrivateMessages(){ var uid,message; uid = getRecipientIdFromReplyBtn(); message = getInputMessage(); if(message === false){ $('.for-post').popover('show'); $("#edit").focus(function() { $('.for-post').popover('hide'); }); return false; } $("#post-reply").attr('disabled','disabled'); // 单击按钮之后 按钮是disabled 禁止的 clearChatTimers(0); //index.php?do=webim&action=send_messages POST 到 后端处理 // php返回 json数据 {"msg":"\u53d1\u9001\u6210\u529f","status":"1","data":[]} /* 我对js实在不行, 不知php 如何获取 post 数据 */ $.post('index.php?do=webim',{action:'send_messages',uid:uid,sMessage:message}, function(json) { if(json.status == '1'){ if($('.dialog-comment-list').find('li').length >0){ var _scrollHeight = $('.dialog-comment-list').find('li').last().offset().top; $("#post-reply").closest('.site-im-dialog').find('.dialog-comment-list').animate({zoom:1},function(){ $(".dialog-comment-list-box").data('jsp').scrollTo(0, _scrollHeight); }); } $("#post-reply").removeAttr('disabled'); clearInputMessage(); clearChatTimers(0); getPrivateMessages(uid); }else{ tipsOp(json.msg,'error'); $("#post-reply").removeAttr('disabled'); } },'json');}
执行 $.post('index.php?do=webim',{action:'send_messages',uid:uid,sMessage:message} ... 后
php 得到
$_GET['do'] 为 webim
$_POST['action'] 为 send_messages
$_POST['uid'] 为 uid 的值
$_POST['sMessage'] 为 message 的值
执行 $.post('index.php?do=webim',{action:'send_messages',uid:uid,sMessage:message} ... 后
php 得到
$_GET['do'] 为 webim
$_POST['action'] 为 send_messages
$_POST['uid'] 为 uid 的值
$_POST['sMessage'] 为 message 的值
谢了,我以为 action 是GET参数

使用數據庫存儲會話的主要優勢包括持久性、可擴展性和安全性。 1.持久性:即使服務器重啟,會話數據也能保持不變。 2.可擴展性:適用於分佈式系統,確保會話數據在多服務器間同步。 3.安全性:數據庫提供加密存儲,保護敏感信息。

在PHP中實現自定義會話處理可以通過實現SessionHandlerInterface接口來完成。具體步驟包括:1)創建實現SessionHandlerInterface的類,如CustomSessionHandler;2)重寫接口中的方法(如open,close,read,write,destroy,gc)來定義會話數據的生命週期和存儲方式;3)在PHP腳本中註冊自定義會話處理器並啟動會話。這樣可以將數據存儲在MySQL、Redis等介質中,提升性能、安全性和可擴展性。

SessionID是網絡應用程序中用來跟踪用戶會話狀態的機制。 1.它是一個隨機生成的字符串,用於在用戶與服務器之間的多次交互中保持用戶的身份信息。 2.服務器生成並通過cookie或URL參數發送給客戶端,幫助在用戶的多次請求中識別和關聯這些請求。 3.生成通常使用隨機算法保證唯一性和不可預測性。 4.在實際開發中,可以使用內存數據庫如Redis來存儲session數據,提升性能和安全性。

在無狀態環境如API中管理會話可以通過使用JWT或cookies來實現。 1.JWT適合無狀態和可擴展性,但大數據時體積大。 2.Cookies更傳統且易實現,但需謹慎配置以確保安全性。

要保護應用免受與會話相關的XSS攻擊,需採取以下措施:1.設置HttpOnly和Secure標誌保護會話cookie。 2.對所有用戶輸入進行輸出編碼。 3.實施內容安全策略(CSP)限制腳本來源。通過這些策略,可以有效防護會話相關的XSS攻擊,確保用戶數據安全。

优化PHP会话性能的方法包括:1.延迟会话启动,2.使用数据库存储会话,3.压缩会话数据,4.管理会话生命周期,5.实现会话共享。这些策略能显著提升应用在高并发环境下的效率。

theSession.gc_maxlifetimesettinginphpdeterminesthelifespanofsessiondata,setInSeconds.1)它'sconfiguredinphp.iniorviaini_set().2)abalanceisesneededeededeedeedeededto toavoidperformance andunununununexpectedLogOgouts.3)

在PHP中,可以使用session_name()函數配置會話名稱。具體步驟如下:1.使用session_name()函數設置會話名稱,例如session_name("my_session")。 2.在設置會話名稱後,調用session_start()啟動會話。配置會話名稱可以避免多應用間的會話數據衝突,並增強安全性,但需注意會話名稱的唯一性、安全性、長度和設置時機。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

禪工作室 13.0.1
強大的PHP整合開發環境