我想在刀片中获取此ID 9 http://localhost/connect/public/index.php/profile/9 我不想路由它
答案 0 :(得分:1)
你的方法是这样的
public function profile($profile){
// you can call model function and get data from profile id
//and then pass it to the view
$data["profile_info"] = "fetch the data from database call your model function ";
return View("your_bladefilename",$data);
}
您可以使用profile_info变量
访问刀片文件中的profile_info在您的刀片文件中
<?php
print_r($profile_info);
?>
如果有什么不清楚,请告诉我