本文介绍了CodeIgniter:如何将控制器功能设置为发布路线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通常使用类似的东西:

I usually use something like:

class User extends CI_Controller {
    public function save() {
        if($this->input->is_post()) { //my own method
           ......
        }
    }
}

还有其他方法吗,例如在Slim框架中:

Is there any other way, eg. in Slim framework:

post("/user/save", function() {
    ......
});

或.Net MVC中的

or in .Net MVC:

[HttpPost]
public ActionResult save(User model) {
    ......
}

还是CodeIgniter可以在其路由配置文件中处理此问题?感谢您的回答.

Or can CodeIgniter handle this in its route config file?Thanks for answer.

推荐答案

Codeigniter不支持REST.如果需要,您需要使用第三方库或编写自己的库.对于第三方库,这是一个很好的库: codeigniter-restserver .

Codeigniter has no built-in support for REST. If you want it, you need to use third-party library or write your own. For third-party library, Here is good one : codeigniter-restserver .

希望对您有用.

这篇关于CodeIgniter:如何将控制器功能设置为发布路线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 02:40