搜索
首页后端开发php教程php中如何接收Ajax POST数据

<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参数 
声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
在Laravel中使用Flash会话数据在Laravel中使用Flash会话数据Mar 12, 2025 pm 05:08 PM

Laravel使用其直观的闪存方法简化了处理临时会话数据。这非常适合在您的应用程序中显示简短的消息,警报或通知。 默认情况下,数据仅针对后续请求: $请求 -

php中的卷曲:如何在REST API中使用PHP卷曲扩展php中的卷曲:如何在REST API中使用PHP卷曲扩展Mar 14, 2025 am 11:42 AM

PHP客户端URL(curl)扩展是开发人员的强大工具,可以与远程服务器和REST API无缝交互。通过利用Libcurl(备受尊敬的多协议文件传输库),PHP curl促进了有效的执行

简化的HTTP响应在Laravel测试中模拟了简化的HTTP响应在Laravel测试中模拟了Mar 12, 2025 pm 05:09 PM

Laravel 提供简洁的 HTTP 响应模拟语法,简化了 HTTP 交互测试。这种方法显着减少了代码冗余,同时使您的测试模拟更直观。 基本实现提供了多种响应类型快捷方式: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

PHP记录:PHP日志分析的最佳实践PHP记录:PHP日志分析的最佳实践Mar 10, 2025 pm 02:32 PM

PHP日志记录对于监视和调试Web应用程序以及捕获关键事件,错误和运行时行为至关重要。它为系统性能提供了宝贵的见解,有助于识别问题并支持更快的故障排除

在Codecanyon上的12个最佳PHP聊天脚本在Codecanyon上的12个最佳PHP聊天脚本Mar 13, 2025 pm 12:08 PM

您是否想为客户最紧迫的问题提供实时的即时解决方案? 实时聊天使您可以与客户进行实时对话,并立即解决他们的问题。它允许您为您的自定义提供更快的服务

解释PHP中晚期静态结合的概念。解释PHP中晚期静态结合的概念。Mar 21, 2025 pm 01:33 PM

文章讨论了PHP 5.3中引入的PHP中的晚期静态结合(LSB),从而允许静态方法的运行时分辨率调用以获得更灵活的继承。 LSB的实用应用和潜在的触摸

自定义/扩展框架:如何添加自定义功能。自定义/扩展框架:如何添加自定义功能。Mar 28, 2025 pm 05:12 PM

本文讨论了将自定义功能添加到框架上,专注于理解体系结构,识别扩展点以及集成和调试的最佳实践。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

Atom编辑器mac版下载

Atom编辑器mac版下载

最流行的的开源编辑器

Dreamweaver Mac版

Dreamweaver Mac版

视觉化网页开发工具

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

将Eclipse与SAP NetWeaver应用服务器集成。

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能