Home > Backend Development > PHP Tutorial > yii2 uses ajax to return json implementation method, yii2ajax returns json_PHP tutorial

yii2 uses ajax to return json implementation method, yii2ajax returns json_PHP tutorial

WBOY
Release: 2016-07-12 08:51:59
Original
1038 people have browsed it

The implementation method of yii2 using ajax to return json, yii2ajax returning json

The example in this article describes the implementation method of yii2 using ajax to return json. Share it with everyone for your reference, the details are as follows:

public function actionAjax()
{
  if(isset(Yii::$app->request->post('test'))){
    $test = "Ajax Worked!";
    // do your query stuff here
  }else{
    $test = "Ajax failed";
    // do your query stuff here
  }
  // return Json
  return \yii\helpers\Json::encode($test);
}

Copy after login

Readers who are interested in more Yii-related content can check out the special topics on this site: "Introduction to Yii Framework and Summary of Common Techniques", "Summary of Excellent PHP Development Framework", "Basic Tutorial for Getting Started with Smarty Templates", "php Date and Time" Usage Summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php mysql database operation introductory tutorial" and "php common database operation skills summary"

I hope this article will be helpful to everyone’s PHP program design based on the Yii framework.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1127905.htmlTechArticleyii2 uses ajax to return json, yii2ajax returns json. This article describes the example of yii2 using ajax to return json. . Share it with everyone for your reference, the details are as follows: public...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template