gpt4 book ai didi

javascript - Vuejs : Accessing Specific URL Segment

转载 作者:行者123 更新时间:2023-12-05 02:35:53 26 4
gpt4 key购买 nike

我有一个路线/网址:

Ex. http://localhost:8080/qr-codes

我想访问第一段

二维码

我该怎么做?

我以前可以在 Laravel 中做这样的事情

Request::segment(1);

最佳答案

使用 URL.pathnameString#split :

const str = 'http://localhost:8080/qr-codes';

const firstSegment = (new URL(str)).pathname.split('/')[1];

console.log(firstSegment);

Vue 演示:

new Vue({
el: "#app",
computed: {
path: function() {
const firstSegment = (new URL(window.location.href)).pathname.split('/')[1];
return `${firstSegment}/create`;
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>

<div id="app">{{path}}</div>

关于javascript - Vuejs : Accessing Specific URL Segment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70427242/

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