Details on the auto-complete function of TP framework

Source: Internet
Author: User

Automatic completion rules for thinkphp

1. If the rules are defined in the model

Protected $_auto=array (

Array (' title ', ' ', 2, ' ignore '),

);

So in the Controller method:

Public Function Auto () {

$aff =d (' affiche ');

$data [' id ']= ' 55 ';

$data [' title ']= ';

$data [' content ']= ' ggghhh ';

if ($aff->create ($data)) {

$aff->save ();

}else{

$this->ajaxreturn ($aff->geterror ());

}

}

A, if the automatic completion of the rules in the model, you must use the D method

B, if you use the Save () [Modify operation] method, you must specify a primary key, and automatic rule the third parameter value is 2

The C, Save () method cannot contain data parameters, that is, cannot be written as $aff->save ($data), or auto-complete is invalid

D, the model if there is a limit to update the field protected $updateFields = ' content '; also causes auto-completion to be invalid

This article from "thinkphp Study notes" blog, declined reprint!

Details on the auto-complete function of TP framework

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.