我知道可以通过 Github 页面托管基于 Jekyl 的静态站点/博客。可以对基于 AngularJS 的静态站点/博客做同样的事情吗?
4 回答
You can but you can't use html5 mode (removes the # from urls). If you use html5 mode, you have to redirect all requests to the root url since its a single page app. Since you can't use server side code on GitHub pages, you can't do this. So, if you don't mind the # in the url, go for it. If you want to use html5 mode, you need to look for hosting elsewhere.
From the Angular docs...
"Using [html5] mode requires URL rewriting on server side, basically you have to
rewrite all your links to entry point of your application (e.g. index.html)"
EDIT: You can make use of some clever hacks to make this work if you really want to. The hacks are outlined in detail here. In summary, you rename your index.html to 404.html and github will serve it at all routes
Jekyll 和 Angular 之间存在一个需要注意的冲突。
包含在 Jekyll 中的 Liquid 也{{ }}
用于计算表达式。要更改 Angular 解释的表达式(因此它不会与 Liquid 冲突),请使用:
var myapp;
myApp = angular.module('myApp', []);
myApp.config([
'$interpolateProvider', function($interpolateProvider) {
return $interpolateProvider.startSymbol('{(').endSymbol(')}');
}
]);
看看这篇博文