Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了简单的模块来测试 hook_menu() 函数
my_menu() { $item["abc"] = array( "title"=> t("abc") "page callback"=> "my_page"); return $item; }
每当我更改项目的“标题”(例如更改为“ABC”)时,我想知道为什么需要清除缓存才能生效。
因为出于性能原因缓存了菜单。构建网站的菜单需要大量的处理,如果在每次浏览量上都完成,这会减慢网站的速度。