码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP页面跳转和Ajax数据返回

时间:2015-10-02 12:33:43      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

IndexController.class.php的代码没有变,
在Common文件夹中新建一个function.php,代码如下:

<?php

function getTestData(){
$data = array();
for($i=0;$i<10;$i++){
$data[$i][‘name‘] = ‘user-‘.$i;
$data[$i][‘age‘] = rand(18,90);
}

return $data;
}


下面是UserController.class.php的代码:
<?php namespace Home\Controller; use Think\Controller; class UserController extends Controller{ public function index(){ //$this->redirect(‘edit‘,‘‘,2,‘only redirect‘); //$this->success(‘success to load‘,U(‘User/login‘),3); // $this->error(‘get error, go ohter URL‘,U(‘User/login‘),5); $this->ajaxReturn(getTestData(),‘xml‘);//‘xml‘,这只是输出格式的问题。 } public function edit(){ echo "user.edit"; } public function login(){ echo "user.login"; } }

 

ThinkPHP页面跳转和Ajax数据返回

标签:

原文地址:http://www.cnblogs.com/htmlphp/p/4852046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!