gpt4 book ai didi

javascript - Ember.js 2. 使用嵌套模板会消耗更多 RAM 吗?

转载 作者:行者123 更新时间:2023-11-28 04:29:06 25 4
gpt4 key购买 nike

我想知道使用嵌套模板是否会非常消耗内存...

类似这样的事情:

Router.map(function() {
this.route('index', {path: '/'});
this.route('login');
this.route('authors', {path: 'authors'}, function() {
this.route('author', {path: ':author_id'}, function() {
this.route('book', {path: ':book_id'}, function() {
this.route('cart', {path: 'cart'});
});
});
});
});

比这内存更大吗?

Router.map(function() {
this.route('index', {path: '/'});
this.route('login');
this.route('authors', {path: '/authors'});
this.route('author', {path: '/author/:author_id'});
this.route('book', {path: '/book/:book_id'});
this.route('cart', {path: '/cart/:cart_id'});
});

最佳答案

两个路由映射将消耗大致相同的内存量。您的应用程序中可能有很多其他东西比路由层消耗更多的内存。通常,您不应根据潜在的内存消耗来决定使用哪种路由布局,而应根据 UI 和 URL 的外观来决定。

关于javascript - Ember.js 2. 使用嵌套模板会消耗更多 RAM 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44776188/

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