arnouxor / ajaxosor
v2.0.8
2017-05-02 09:45 UTC
Requires
- php: >=5.6.0
README
使用CodeIgniter优化ajax调用
安装
加载第三方库
$this->load->add_package_path(APPPATH . 'third_party/alienosor');
$this->load->library('alienosor');
$this->load->remove_package_path(APPPATH . 'third_party/alienosor');
使用方法
php
public function ajax_search()
{
$config = array(
array('field' => 'searchText', 'label' => '', 'rules' => 'trim|required|integer'),
);
$this->alienosor->process($config, array(
["type" => "library", "file" => "myfirst_lib", "method" => "method1", "params" => array("searchText")],
["type" => "model", "file" => "myfirst_model", "method" => "method2", "params" => array("searchText", "__LAST_RESULT", "mycustomvariable")]
));
}