我正在使用新的MVVM框架 - Vue.js (http://vuejs.org/)。
在简单的示例和演示中非常好,但现在我正在尝试创建具有多个视图的大型SPA,并且我意识到在框架的文档中没有描述如何做到这一点的最佳模式。
主要问题是我不知道如何处理不同路线上的观点。
例如,我正在使用导演(https://github.com/flatiron/director)进行路由,但如何更改视图?
var booksCtrl = function () {
var booksViewModel = new Vue({
el: '#books'
data: { ... }
ready: function () {
// hide previous ViewModel and display this one??
}
});
};
var editBookCtrl = function (id) {
var editBookViewModel = new Vue({
el: '#editBook'
data: { ... }
ready: function () {
// hide previous ViewModel and display this one??
}
});
};
var routes = {
'/books': booksCtrl,
'/books/:id/edit': editBookCtrl
};
var router = new Router(routes);
router.init();
我是否需要创建单独的Vue.js ViewModel,并且只需display:block / display:none
就像这个例子一样?
您认为哪种方式正确?谢谢!
答案 0 :(得分:24)
可以使用v-view和v-ref来解析嵌套的子视图。
HTML
<div id="main">
<div v-view="currentView" v-ref="view"></div>
</div>
<ul>
<li><a href="#/">top</a></li>
<li><a href="#/nest/view1">nest/view1</a></li>
<li><a href="#/nest/view2">nest/view2</a></li>
</ul>
<script id="top" type="x-template">
<div>top view</div>
</script>
<script id="nest" type="x-template">
<div>
<span>nest view</span>
<div v-view="subview"></div>
</div>
</script>
的javascript
Vue.component('top', Vue.extend({
template: "#top",
}));
Vue.component('nest', Vue.extend({
template: '#nest',
components: {
view1: Vue.extend({
template: '<span>this is subview 1</span>',
}),
view2: Vue.extend({
template: '<span>this is subview 2</span>',
}),
},
data: {
subview: "view1",
},
}));
var main = new Vue({
el: "#main",
data: {
currentView: "top",
},
});
var router = new Router({
'/': function() { main.currentView = 'top' },
'/nest/:view': function(view) {
main.currentView = 'nest';
main.$.view.subview = view;
},
});
router.init();
jsfiddle:http://jsfiddle.net/koba04/WgSK9/1/
答案 1 :(得分:15)
官方推荐的在vuejs应用程序中使用路由的方法是使用vue-router:
从文档中引用:
vue-router
是Vue.js的官方路由器。它 与Vue.js核心深度集成,构建单页 使用Vue.js的应用程序变得轻而易举。功能包括:
- 嵌套路线/视图映射
- 基于组件的模块化路由器配置
- 路线参数,查询,通配符
- 查看由Vue.js提供支持的过渡效果&#39;过渡系统
- 细粒度导航控件
- 与自动活动CSS类的链接
- HTML5历史模式或哈希模式,在IE9中具有自动回退功能
- 以历史记录模式返回时恢复滚动位置
编写良好的documentation详细阐述了Modular, component-based router configuration
,包括处理嵌套路由的示例。
可以使用router-view
出口,路由配置可以指定要呈现的组件。这些组件可以包含嵌入式router-view
出口,允许面向组件的嵌套路由管理。
文档示例:
<div id="app">
<router-view></router-view>
</div>
router.map({
'/foo': {
component: Foo,
// add a subRoutes map under /foo
subRoutes: {
'/bar': {
// Bar will be rendered inside Foo's <router-view>
// when /foo/bar is matched
component: Bar
},
'/baz': {
// Same for Baz, but only when /foo/baz is matched
component: Baz
}
}
}
})
答案 2 :(得分:4)
您可以使用v-view和component?
像这样。的javascript
Vue.component('top', Vue.extend({
template: "<div>top view</div>",
}));
Vue.component('other', Vue.extend({
template: "<div>other view</div>",
}));
var main = new Vue({
el: "#main",
data: {
currentView: "top",
},
});
var router = new Router({
'/': function() { main.currentView = 'top' },
'/other': function() { main.currentView = 'other' },
});
router.init();
HTML
<div id="main">
<div v-view="currentView"></div>
</div>
答案 3 :(得分:0)
如果您不想嵌套它们,可以使用命名视图。
HTML
<router-view class="view one"></router-view>
<router-view class="view two" name="a"></router-view>
<router-view class="view three" name="b"></router-view>
的javascript
const Foo = { template: '<div>foo</div>' }
const Bar = { template: '<div>bar</div>' }
const Baz = { template: '<div>baz</div>' }
const router = new VueRouter({
mode: 'history',
routes: [
{
path: '/',
// a single route can define multiple named components
// which will be rendered into <router-view>s with corresponding names.
components: {
default: Foo,
a: Bar,
b: Baz
}
},
{
path: '/other',
components: {
default: Baz,
a: Bar,
b: Foo
}
}
]
})
jsfiddle:https://jsfiddle.net/posva/6du90epg/
小提琴来自文档:https://router.vuejs.org/en/essentials/named-views.html