我正在制作一个迷你网店系统,以便练习,因此您可以动态创建多个网上商店。
我目前有这个:
Route::set('dynamic_routes', function($uri)
{
$webshop = DB::select()->from('webshops')
->where('uri', '=', $uri)
->execute()
->get('id', 0);
// Check if there is a match
if ($webshop > 0)
{
define('WEBSHOP_ID', $webshop);
return array(
'controller' => 'shop',
'action' => 'index',
'directory' => 'shop'
);
}
}
);
这将处理,因此我可以通过查找数据库中的URI来获得动态路由。
如果网店匹配,则会将您带到网店的索引。 - 工作正常。
现在这只适用于你登陆网店的根uri,例如“/ myWebshop”。
对于所有网上商店,我有两个控制器,一个叫“商店”,另一个叫“客户”,我希望他们可以通过/ myWebshop / shop / action和/ myWebshop / customer / action
访问这里的问题是“myWebshop”是动态的,“shop”控制器或“customer”控制器中的action函数方法也是动态的。
我如何写两条动态的路线?
这是我走了多远:
if(strpos($uri, '/'))
{
// If we have a /, and [1] isn't empty, we know that the user looks for subpage?
$expl = explode('/', $uri);
if(!empty($uri[1]))
{
// Set the uri to the first part, in order to find the webshop?
$uri = $uri[0];
}
$webshop = DB::select()->from('webshops')
->where('uri', '=', $uri)
->execute()
->get('id', 0);
// Check if there is a match
if ($webshop > 0)
{
define('WEBSHOP_ID', $webshop);
return array(
'controller' => 'shop',
'action' => 'index',
'directory' => 'shop'
);
}
}
我不知道在此之后该怎么做,我怎么知道创建动态路由并开始直接指向用户?
答案 0 :(得分:0)
从URL中取出控制器和操作部分,方法与$uri
:
return array(
'controller' => !empty($uri[1]) ? $uri[1] : 'some_default_controller',
'action' => !empty($uri[2]) ? $uri[2] : 'some_default_action',
'directory' => 'shop' // OR $uri[x] if it's also supposed to be dynamic
);