内容简介:翻译自:https://stackoverflow.com/questions/30692283/codeigniter-uri-class-how-can-i-use-hyphen-instead-underscore
错误,所以我现在使用下划线.
它可能有url – 在codeigniter中连字符?
我的代码:
/控制器:
<?php include (APPPATH.'/libraries/REST_Controller.php'); class get_artist_discography extends REST_Controller { function artist_name_get(){ $data = new stdClass(); $this->load->model('artist_model'); $data = $this->artist_model->getAll();$this->response($data, 200); } }
/楷模:
<?php class artist_model extends CI_Model { function getAll(){ $q = $this->db->query("SELECT artist_discography,artist_name from music"); if($q->num_rows() > 0) { foreach ($q->result() as $row) { $data [] = $row; } return $data; } } }
是的你可以.
通常CI会生成类似于base_url / Controller_name / Method_name的url.
如您所知,控制器名称和方法名称不能包含“ – ”(连字符),因此您无法更改其名称.
你能做什么是使用路由器显示正确的控制器与相应的URL.
就像你可以在config / routes.php上编写这段代码一样
$route['get-artist-discography/artist-name'] ='get_artist_discography/artist_name';
如果你的链接是http:// localhost:8888 / ci / index.php / get-artist-discography / artist-name,这将执行你的get_artist_discography控制器和artist_name方法
您可以了解有关 URI Routing at CI docs 的更多信息
翻译自:https://stackoverflow.com/questions/30692283/codeigniter-uri-class-how-can-i-use-hyphen-instead-underscore
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- [译] 2019 CSS 新属性“连字符”初探
- Go语言 “ _ ”(下划线)
- 文字悬停下划线动画效果集合
- golang之下划线(_)之语义说明
- Swoole 5 将移除 PSR-0 下划线风格类名
- 在Python中使用双下划线防止类属性被覆盖
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
编程珠玑(英文版・第2版)
[美] Jon Bentley / 人民邮电出版社 / 2010-8 / 39.00元
多年以来,当程序员们推选出最心爱的计算机图书时,《编程珠玑》总是位列前列。正如自然界里珍珠出自细沙对牡蛎的磨砺,计算机科学大师Jon Bentley以其独有的洞察力和创造力,从磨砺程序员的实际问题中凝结出一篇篇不朽的编程“珠玑”。这些文章是《ACM通讯》最受欢迎的专栏文章,最终结集为两部书出版。本书为第一卷,主要讨论计算机科学中最本质的问题:如何正确选择和高效地实现算法。 在书中,作者选取许......一起来看看 《编程珠玑(英文版・第2版)》 这本书的介绍吧!