从示例应用中,我尝试禁用标签。我看到在structure.coffee中有一些标签数组定义,但是当我清空它们时,应用程序无法正常工作
tabs: [
{
title: "Index"
id: "index"
location: "example#getting-started" # Supersonic module#view type navigation
}
{
title: "Settings"
id: "settings"
location: "example#settings"
}
{
title: "Internet"
id: "internet"
location: "http://google.com" # URLs are supported!
}
]
如何在没有编程的情况下原生禁用它们
答案 0 :(得分:1)
如文档http://docs.appgyver.com/supersonic/guides/architecture/app-config-files/#structure-coffee
中所述“如果您没有使用制表符,则需要定义根视图”
默认情况下,在structure.coffee根视图中注释掉#(hash tag)。因此,现在您可以删除tabs数组并使用您希望它默认显示的正确视图定义(取消注释)根视图设置。