标签:dex 修改 小数 传递 index code 使用 问题总结 路由
今天使用TP5.1的路由传参,传递小数获取后总是会变成整数。后来看手册的变量规则才解决这个问题:Route::get(‘api/:id‘,‘api/index/banner‘);
访问:http://project.com/api/12.05
结果:12
修改后的路由
Route::get(‘api/:id‘,‘api/index/banner‘,[],[‘id‘=>‘[0-9.]+‘]);
结果就能正常获取
标签:dex 修改 小数 传递 index code 使用 问题总结 路由
原文地址:http://blog.51cto.com/11016194/2338371