Heim  >  Artikel  >  Backend-Entwicklung  >  thinkpad x1 helix 利用ThinkPHP内置的ThinkAjax实现异步传输技术的实现方法

thinkpad x1 helix 利用ThinkPHP内置的ThinkAjax实现异步传输技术的实现方法

WBOY
WBOYOriginal
2016-07-29 08:47:281232Durchsuche

准备工作:
① 首先要会使用ThinkPHP这个框架
② 最好有些ajax的基础(可以去看下小飞的另外一篇博文:Ajax实时验证"用户名/邮箱等"是否已经存在)
③ 4个js文档(点此免积分下载)
先贴上源代码:

复制代码 代码如下:












标题:

复制代码 代码如下:


class IndexAction extends Action
{
// 首页
public function index(){
$this->display();
}
// 检查标题是否可用
public function checkTitle()
{
if(!empty($_POST['title']))
{
$Form = D("Form");
if($Form->getByTitle($_POST['title']))
{
$this->error('标题已经存在');
}
else
{
$this->success('标题可以使用!');
}
}
else
{
$this->error('标题不能为空...');
}
}
}
?>


文章作者:WEB开发_小飞

以上就介绍了thinkpad x1 helix 利用ThinkPHP内置的ThinkAjax实现异步传输技术的实现方法,包括了thinkpad x1 helix方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn