单页Web应用(single page application,SPA),就是只有一个Web页面的应用,是加载单个HTML页面,并在用户与应用程序交互时动态更新该页面的Web应用程序
单页面应用程序:
只有第一次会加载页面, 以后的每次请求, 仅仅是获取必要的数据.然后, 由页面中js解析获取的数据, 展示在页面中
传统多页面应用程序:
对于传统的多页面应用程序来说, 每次请求服务器返回的都是一个完整的页面
优势
减少了请求体积,加快页面响应速度,降低了对服务器的压力
更好的用户体验,让用户在web app感受native app的流畅
<script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.11/vue.js">script>
<script src="https://cdn.bootcdn.net/ajax/libs/vue-router/3.1.4/vue-router.js">script>
const Home=Vue.extend({
template:'<div><h2>Homeh2><div>Home页面的主要内容div>div>'
});
const About=Vue.extend({
template:'<div><h2>Abouth2><div>About页面的主要内容div>div>'
});
注1:extend是构造一个组件的语法器. 你给它参数,他给你一个组件,然后这个组件
你可以作用到Vue.component这个全局注册方法里,也可以在任意vue模板里使用car组件
注2:也可以用以前的方式创建和获得组件,效果也是一样的
Vue.component("button-counter", {...});//创建组件
var ButtonCounter = Vue.component('button-counter');//获得组件
var routes=[
{name:'home',path:'/home',component:Home},
{name:'about',path:'/about',component:About}
];
注1:根路径“/”
routes
配置const router=new VueRouter({routes:routes});
注1:route和router的区别
route:路线
router:路由器
路由器中包含了多个路线
5. 创建和挂载根实例。
var vm=new Vue({
//el:'#app',
data:function(){
return{
title:'Hello Vue!',
ts:new Date().getTime()
}
},
router:router,
methods:{
prev:function(){
this.$router.go(-1);
},
next:function(){
this.$router.go(1);
},
push:function(){
this.$router.push({
name:'home'
});
}
}
}).$mount('#app');
go to Home
<div id="app">
<p>{{title}} {{ts}}p>
<div>
<router-link to="/home" replace>首页router-link>
<router-link to="/about">关于我们router-link>
div>
<div>
<button @click="prev">前一页button>
<button @click="next">后一页button>
<button @click="push">指定页面button>
div>
<div>
<router-view>router-view>
div>
div>
<router-link to="/home">Homerouter-link>
<router-link v-bind:to="'home'">Homerouter-link>
replace
设置 replace 属性的话,当点击时,会调用 router.replace() 而不是 router.push(),导航后不会留下 history 记录。
vue中导航中的后退-前进-编程式导航
this.$router.go(-1) :代表着后退
this.$router.go(1):代表着前进
this.$router.push({ 切换到name为home的路由
name:'home'
});
append
<bese href="${pageContext.request...}/">
<script type="..." href="/EasyUI/jquery.js">script>
<link src="....css">
设置 append 属性后,则在当前 (相对) 路径前添加基路径。例如,我们从 /a 导航到一个相对路径 b,如果没有配置 append,则路径为 /b,如果配了,则为 /a/b
base标签作用于head标签之间在link和script标签中的href和src属性之前加入
-->
<script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.11/vue.js">script>
<script src="https://cdn.bootcdn.net/ajax/libs/vue-router/3.1.4/vue-router.js">script>
head>
<body>
<div id="app">
<p>{{title}} {{ts}}p>
<div>
<router-link to="/home" replace>首页router-link>
<router-link to="/about">关于我们router-link>
div>
<div>
<button @click="prev">前一页button>
<button @click="next">后一页button>
<button @click="push">指定页面button>
div>
<div>
<router-view>router-view>
div>
div>
body>
<script>
//注册自定义组件
const Home=Vue.extend({
template:'Home
Home页面的主要内容'
});
const About=Vue.extend({
template:'About
About页面的主要内容'
});
//定义路由路径
var routes=[
{name:'home',path:'/home',component:Home},
{name:'about',path:'/about',component:About}
];
//定义路由器
const router=new VueRouter({routes:routes});
var vm=new Vue({
//el:'#app',
data:function(){
return{
title:'Hello Vue!',
ts:new Date().getTime()
}
},
router:router,
methods:{
prev:function(){
this.$router.go(-1);
},
next:function(){
this.$router.go(1);
},
push:function(){
this.$router.push({
name:'home'
});
}
}
}).$mount('#app');
script>
html>