Home > php教程 > php手册 > body text

ThinkPHP处理Ajax返回的方法

WBOY
Release: 2016-06-06 20:16:56
Original
1285 people have browsed it

这篇文章主要介绍了ThinkPHP处理Ajax返回的方法,简单讲述了在ThinkPHP中Ajax的用法及对应的处理Ajax返回值的方法,具有不错的实用价值,需要的朋友可以参考下

本文实例讲述了ThinkPHP处理Ajax返回的方法,,分享给大家供大家参考。具体实现方法如下:

在ThinkPHP中可以直接使用ajax返回:

复制代码 代码如下:

$.post(handleUrl,{username:username.val(),content:content.val()},function(data) {
//这里是接收返回来的内容。},'json');

而在处理过程中可以使用这个函数处理:

复制代码 代码如下:

$this->ajaxReturn(要返回的内容,'json(json格式返回)');

希望本文所述对大家的ThinkPHP框架程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!