gpt4 book ai didi

ember.js - 你如何将 ember cli 中的 base/root url 从默认 root '/' 更改为 '/home' ?

转载 作者:行者123 更新时间:2023-12-04 19:04:40 27 4
gpt4 key购买 nike

我已经生成了一条路线“家”,我想将我的基本网址“/”更改为“家”,我已尝试将这行代码添加到 router.js

App.Router.reopen({
rootURL: '/blog/'
});

我还尝试将 config/environment.js 中的 base-url 设置为“/home/”

最佳答案

// app/routes/application.js
export default Ember.Route.extend({
redirect: function () {
this.transitionTo('home');
}
});


// router.js
Router.map(function() {
this.route('home', { path: '/home' });
});

关于ember.js - 你如何将 ember cli 中的 base/root url 从默认 root '/' 更改为 '/home' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28123227/

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