codecamp

URL路由

'api/:hash' =& 'Home/Api/index'

以上是ApiAdmin的路由配置,翻译过来就是,如果访问的是/api/{hash},其实访问的是/Home/Api/index/hash/{hash}。

在体验项目的时候,有朋友发现$_GET参数获取不到,往往请求的URL地址是下面这样的:http://localhost/api/{hash}?a=a1&b=b2&c=c2,在这样的情况下如果获取不到参数,请尝试使用下面的URL来访问:http://localhost/api/{hash}/a/a1/b/b2/c/c2

由于各个服务器环境不一样,部分服务器环境导致http_query字符串不识别。

Api配置
URL模式
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }