gpt4 book ai didi

javascript - Predix UI Seed 应用程序 - 从 url 中删除哈希

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

我正在使用 Predix UI seed我正在尝试从 URL 中删除 #,以便

http://localhost:5000/#/dash

成为

http://localhost:5000/dash

执行此操作的最佳方法是什么?

seed-app.html页面,这是我认为我可以配置 URL 结构的地方,具有以下关键元素

...
<!-- app route -->
<link rel="import" href="../../bower_components/app-route/app-location.html">
<link rel="import" href="../../bower_components/app-route/app-route.html">
...
<!-- px components -->
<link rel="import" href="../../bower_components/px-app-nav/px-app-nav.html">
<link rel="import" href="../../bower_components/px-view/px-view.html">

<!-- app-location captures url and assigns _route value -->
<app-location
id="carbonLocation"
route="{{_route}}"
use-hash-as-path>
</app-location>

<!-- /dashboards route and view -->
<app-route
route="[[_route]]"
pattern="/dashboards"
active="{{_dashboardsActive}}">
</app-route>
...
<script>
Polymer({
is: 'seed-app',
properties: {
routesActive: {
type: Boolean,
value: false
},
...
// Sets app default base URL for client-side routing
pathPrefix: {
type: String,
value: '#'
}
},
ready: function(){
this._checkForDefaultRoute();
},
_checkForDefaultRoute: function() {
// set default route to /dashboards
var l = window.location;
if((l.hash === "#/" || l.hash === "") && l.pathname === "/") {
l.hash = "/dashboards";
}
}
});
</script>

我删除了路径前缀

pathPrefix: {
type: String,
value: ''
}

并像这样更改了 _checkForDefaultRoute 函数

_checkForDefaultRoute: function() {
// set default route to /runtime
var l = window.location;
if((l.hash==="") && l.pathname==="/"){
l.pathname="/login";
}
}

结果是我仍然需要使用#作为前缀才能到达页面。

最佳答案

关于javascript - Predix UI Seed 应用程序 - 从 url 中删除哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42201326/

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