自定义页面 GET 请求上的 Drupal 干净 url

发布于 2024-08-29 06:09:33 字数 523 浏览 4 评论 0原文

我有一个 drupal 页面(内容类型页面),应该使用干净的 url 接受 GET 值。

我使用 php 代码输入格式将以下代码放入页面主体中。

<?php
  $uid = $_GET['uid'];
  $user = user_load($uid);
  print $user->name;
?>

现在以下链接 http://www.example.com/mypath/?uid=5< /a> 结果显示用户 5 的名字。伟大的。

我的问题是:可以使用干净的网址来完成此操作,例如转到 http://www.example.com /mypath/5 有相同的结果吗? (类似于在视图中使用参数)

I have a drupal page (content type page) that should accept GET values using clean urls.

I put the following code in the page body using the php code input format.

<?php
  $uid = $_GET['uid'];
  $user = user_load($uid);
  print $user->name;
?>

Now the following link http://www.example.com/mypath/?uid=5 results in user 5's name being displayed. Great.

My question is: Can this be accomplished using clean urls such that going to http://www.example.com/mypath/5 has the same result? (Similar to using arguments in views)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仙气飘飘 2024-09-05 06:09:33

您可以使用模块中的 hook_menu 在菜单系统中执行您所要求的操作,但您无法创建其中一部分是名称的别名。整个别名只是一个名称,因此您无法从中提取信息。使用 hook_menu 你可以这样做:

function my_module_menu() {
  $items = array();

  $items['path/%user'] = array(
    'title' => 'Title',
    'page callback' => 'callback',
    'page arguments' => array(1),
    'access callback' => '...',
    'access arguments' => array(...),
  );

  return $items;
}

然后在你的回调函数中,你将在与 uid 相对应的路径中获得值或参数 1(实际上它将是一个加载的用户对象,因为 %用户)。

You can do what you ask in the menu system using hook_menu in a module, but you can't create an alias where a part of it is a name. The whole alias is a name, so you can't extract info from it. Using hook_menu you can do this:

function my_module_menu() {
  $items = array();

  $items['path/%user'] = array(
    'title' => 'Title',
    'page callback' => 'callback',
    'page arguments' => array(1),
    'access callback' => '...',
    'access arguments' => array(...),
  );

  return $items;
}

Then in your callback function you will have the value or argument 1 in the path which corresponds to the uid (in reality it will be a loaded user object because of %user).

旧伤慢歌 2024-09-05 06:09:33

是的。使用 arg() 而不是 $_GET

请记住,arg() 默认情况下使用 $_GET['q'],因此在返回结果之前可以有效地转换别名。因此,您尝试访问的参数可能位于另一个位置。

例如,路径 myalias/5 可能会转换为taxonomy/term/5。在本例中,arg(2) 为 5。

有关 Drupal arg() 函数的更多信息,请参阅 http://api.drupal.org/api/function/arg/6

Yes. Use arg() instead of $_GET

Keep in mind that arg() uses the $_GET['q'] by default and so effectively translates an alias before returning the result. Thus, the parameter you are trying to access may be in another position.

For example, the path myalias/5 might translate into taxonomy/term/5. In this case, arg(2) is 5.

For more information on the Drupal arg() function, see http://api.drupal.org/api/function/arg/6

久隐师 2024-09-05 06:09:33

如果您使用视图来组装这些页面,则可以通过将 UID 作为 URL 中提供的参数来轻松完成该部分。

If you use Views to assemble these pages, that part can be done easily for you by putting UID as an argument provided in the URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文