1
進出口實現laravel RoumenDianoff網站地圖在我的應用程序站點地圖生成器與RoumenDianoff網站地圖
https://github.com/RoumenDamianoff/laravel-sitemap/wiki/Dynamic-sitemap
和IM上的代碼,這部分真的很困惑
Route::get('sitemap', function(){
// create new sitemap object
$sitemap = App::make("sitemap");
// set cache key (string), duration in minutes (Carbon|Datetime|int), turn on/off (boolean)
$sitemap->setCache('laravel.sitemap', 60);
$posts = DB::table('posts')->orderBy('created_at', 'desc')->get();
foreach ($posts as $post)
{
$sitemap->add($post->slug, $post->modified, $post->priority, $post->freq);
}
據我瞭解我創建了一個使用網站地圖作爲該功能的路線,所以我沒有得到的部分是什麼時候迭代通過我網站的每個鏈接,或者我如何從我的網站獲得這個鏈接,然後添加到每個那個功能,我的意思是看起來像t帽子$帖子變量,但我沒有任何數據庫上的鏈接的記錄,所以我怎麼能得到這個鏈接。
嗨,我也堅持着同樣的問題。現在有解決方案嗎? –