gpt4 book ai didi

javascript - 页面的一部分作为 Angular 中的 subview

转载 作者:行者123 更新时间:2023-12-03 03:14:14 25 4
gpt4 key购买 nike

我有以下问题需要解决:

enter image description here

从本地菜单(左侧菜单)中,我可以选择子页面。典型场景。现在我想重新加载与本地菜单项相关的内容。在纯 Angular 中,我不知道实现它的标准简单方法。我可以手动从服务器获取标记并手动替换内容区域。有没有更好的办法?我用谷歌搜索并发现了

https://github.com/angular-ui/ui-router

但在我开始深入研究细节之前,也许您可​​以建议如何解决这个问题。或者甚至建议我是否可以使用 ui-router 解决这个问题。

最佳答案

您想在 ui-router 中使用嵌套状态。像这样的事情

$stateProvider
.state('home', {
templateUrl: 'views/home.html',
url: '/home',
controller: 'homeCtrl'
})
.state('home.localmenu1', {
templateUrl: 'views/localmenu1.html',
url: '/home/local1',
controller: 'local1Ctrl'
})
.state('home.localmenu2', {
templateUrl: "views/localmenu2.html",
url: '/home/local2',
controller: 'local2Ctrl'
})
.state('products', {
templateUrl: 'views/products.html',
url: '/products',
controller: 'productsCtrl'
})

因此,在“views/home.html”中,您可以使用 ui-view 指令放置一个元素。那么该元素将包含子状态的 View (home.localmenu1home.localmenu2)。

关于javascript - 页面的一部分作为 Angular 中的 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19569581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com