我对谷歌的网络应用程序 - 壳牌感兴趣。我已经下载了它GitHub。但我发现整个代码中没有index.html / index.php文件。我主要发现的是许可文件,app.yaml文件和app.js文件。该页面的链接是here。 我听说,我可以使用终端在我的网站托管网站上安装项目。但终端不适合我的情况。我已停止使用Firebase,因为我必须拥有终端。那么,在我的网站上安装项目还有其他想法吗? 我可以拥有一个平面文件,以便我可以将html,css,JavaScript和其他媒体文件放到我的服务器中吗?
答案 0 :(得分:1)
不幸的是,Google网络应用程序-Shell并未设计为拥有# Create name vector
vec <- paste0("c", 1:8)
names(vec) <- c("aa", "bb", "cc", "dd", "ee", "ff", "gg", "hh")
# Create the function
AB_rename <- function(x, name_vec){
old_colname <- names(x)
new_colname <- name_vec[name_vec %in% old_colname]
x2 <- setNames(x, names(new_colname))
return(x2)
}
AB_rename(df1, vec)
aa bb ff hh
1 1 1 1 1
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
5 5 5 5 5
文件。有一个观看文件夹,其中包含您正在寻找的https://github.com/GoogleChromeLabs/application-shell/tree/master/server/views。
我们可以看到他们使用把手作为模板系统。例如,如果我们查看https://github.com/GoogleChromeLabs/application-shell/blob/master/server/views/layouts/default.handlebars,我们就可以看到他们有index.html
和{{> open-page}}
。如果我们查看把手documentation,这些部分会被渲染到其他视图中。
基本上,我们无法指出单个{{{body}}}
,但我们可以通过探索他们的观点来重建应用。