我想以两个类似的变体分发我的应用程序。只有两种变体的开始屏幕不同。
这种设置的正确模式是什么?我认为使用 index_a.html 和 index_b.html 是一个好的开始?!
我的 index.html 看起来像这样
<!doctype html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="utf-8">
<title>myApp</title>
<link rel="stylesheet" href="styles/application.css"/>
</head>
<body ng-controller="AppController">
<div ng-view></div>
<script src="lib/angular/angular.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/services.js"></script>
<script src="scripts/controllers.js"></script>
<script src="scripts/filters.js"></script>
<script src="scripts/directives.js"></script>
</body>
</html>
谢谢