欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

vue 獲取鏈接

吉茹定2年前9瀏覽0評論

Vue是一個流行的JavaScript框架,它可以輕松地構建交互式Web界面。通過Vue,我們可以快速地開發復雜的前端應用程序,并在其中使用各種功能強大的工具和技術。其中之一就是獲取鏈接,以下是幾種獲取鏈接的方式。

使用vue-router獲取鏈接

// 引入Vue和VueRouter
import Vue from 'vue'
import VueRouter from 'vue-router'
// 注冊VueRouter
Vue.use(VueRouter)
// 創建路由器實例
const router = new VueRouter({
mode: 'history',
routes: [
{
path: '/home',
component: Home
},
{
path: '/about',
component: About
}
]
})
// 獲取鏈接
router.push('/home')

使用window.location獲取鏈接

// 獲取當前鏈接
console.log(window.location.href)
// 獲取當前主機名
console.log(window.location.hostname)
// 獲取當前路徑名
console.log(window.location.pathname)
// 獲取當前端口號
console.log(window.location.port)
// 獲取當前協議
console.log(window.location.protocol)

使用vue-resource獲取鏈接

// 引入Vue和vue-resource
import Vue from 'vue'
import VueResource from 'vue-resource'
// 注冊VueResource
Vue.use(VueResource)
// 發送Get請求
Vue.http.get('/api/users').then(response =>{
console.log(response.data)
})
// 發送Post請求
Vue.http.post('/api/users', { name: 'John Doe' }).then(response =>{
console.log(response.data)
})

以上是三種獲取鏈接的方式,使用不同的方式可以根據自身項目的需要進行選用。無論是使用vue-router、window.location還是vue-resource,都能夠輕松地獲取鏈接并進行操作。