自定义页面 GET 请求上的 Drupal 干净 url
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用模块中的
hook_menu
在菜单系统中执行您所要求的操作,但您无法创建其中一部分是名称的别名。整个别名只是一个名称,因此您无法从中提取信息。使用hook_menu
你可以这样做:然后在你的回调函数中,你将在与 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. Usinghook_menu
you can do this: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
).是的。使用 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
如果您使用视图来组装这些页面,则可以通过将 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.