我想使用Framework7
构建一个单页应用程序。鉴于应用程序运行系统的某些限制,我不能使用AngularJS
。据我了解,香草Framework7
不支持SPA
,每个HTML
页都加载到
当用户单击链接,按钮或可能触发页面转换的其他所有内容时,就会发出要求。
是否有一种仅用SPA
来构建Framework7
的方法?
根据此示例:
https://github.com/framework7io/framework7-template-vue-simple
这似乎是有可能的,但是如果我也需要Vue.js
还是仅凭Framework7
本身就可以做到。
根据官方文档,这是每个Framework7
应该具有的基本骨架:
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Color theme for statusbar -->
<meta name="theme-color" content="#2196f3">
<!-- Your app title -->
<title>My App</title>
<!-- Path to Framework7 Library Bundle CSS -->
<link rel="stylesheet" href="path/to/framework7.bundle.min.css">
<!-- Path to your custom app styles-->
<link rel="stylesheet" href="path/to/my-app.css">
</head>
<body>
<!-- App root element -->
<div id="app">
<!-- Your main view, should have "view-main" class -->
<div class="view view-main">
<!-- Initial Page, "data-name" contains page name -->
<div data-name="home" class="page">
<!-- Scrollable page content -->
<div class="page-content">
<p>Page content goes here</p>
<!-- Link to another page -->
<a href="/about/">About app</a>
</div>
</div>
</div>
</div>
<!-- Path to Framework7 Library Bundle JS-->
<script type="text/javascript" src="path/to/framework7.bundle.min.js"></script>
<!-- Path to your app js-->
<script type="text/javascript" src="path/to/my-app.js"></script>
</body>
</html>
我的问题是:我可以在父“视图” div
中有多个页面,而不仅仅是主要页面吗?如果是这样,我是否可以通过Framework7
路由API
来切换页面而无需请求外部HTML
页面?