gpt4 book ai didi

javascript - 如何在Angular JS中获取url参数

转载 作者:行者123 更新时间:2023-12-02 15:57:57 25 4
gpt4 key购买 nike

这是我的网址

localhost/project/#/showprofile/18

我想在我的 View 中显示参数18

app.js 我有

.when('/showprofile/:UserID', {
title: 'Show User Profile',
templateUrl: 'views/layout/showprofile.php',
controller: 'authCtrl',
})

这里正在显示页面 showprofile.php,但突然网址变成这样

localhost/project/#/showprofile/:UserId

如何获取 showprofile.php 中的值 18 并按原样设置网址,即

localhost/project/#/showprofile/18

最佳答案

使用$routeParams获取参数值:

$routeParams.UserID

确保在使用之前注入(inject) $routeParams

编辑如何获取 showprofile.php 中的值 18

<?php
$link = $_SERVER['PHP_SELF']; // Get current URL
$link_array = explode('/', $link); // Split by /
echo $page = end($link_array); // Get last element from array

?>

关于javascript - 如何在Angular JS中获取url参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31445599/

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