CodeIgniter - 链接到视图中另一个页面的正确方法

发布于 2024-10-20 14:31:12 字数 62 浏览 2 评论 0原文

我想知道是否有人可以告诉我从视图中链接到另一个页面的正确方法。

有没有这个功能或者只是常见的功能

I was wondering if someone could tell me the correct way to link to another page from within a view.

Is there a function for this or is it just the usual about

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

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

发布评论

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

评论(6

静谧 2024-10-27 14:31:12

我假设您的意思是应用程序中的“内部”。

您可以创建自己的 标记并在 href 中插入一个 URL,如下所示

<a href="<?php echo site_url('controller/function/uri') ?>">Link</a>

,或者您可以使用URL 帮助器以这种方式生成 标记

anchor(uri segments, text, attributes)

所以...使用它...

<?php echo anchor('controller/function/uri', 'Link', 'class="link-class"') ?>

并且将生成

<a href="http://example.com/index.php/controller/function/uri" class="link-class">Link</a>

对于附加评论问题

我将使用我的第一个例如

...

<a href="<?php echo site_url('controller/function') ?>"><img src="<?php echo base_url() ?>img/path/file.jpg" /></a>

对于图像(和其他资产),我不会将文件路径放在 PHP 中,我只会回显 base_url(),然后正常添加路径。

I assume you are meaning "internally" within your application.

you can create your own <a> tag and insert a URL in the href like this

<a href="<?php echo site_url('controller/function/uri') ?>">Link</a>

OR you can use the URL helper this way to generate an <a> tag

anchor(uri segments, text, attributes)

So... to use it...

<?php echo anchor('controller/function/uri', 'Link', 'class="link-class"') ?>

and that will generate

<a href="http://example.com/index.php/controller/function/uri" class="link-class">Link</a>

For the additional commented question

I would use my first example

so...

<a href="<?php echo site_url('controller/function') ?>"><img src="<?php echo base_url() ?>img/path/file.jpg" /></a>

for images (and other assets) I wouldn't put the file path within the PHP, I would just echo the base_url() and then add the path normally.

扛刀软妹 2024-10-27 14:31:12

最好的方法是使用以下代码:

<a href="<?php echo base_url() ?>directory_name/filename.php">Link</a>

The best way is to use the following code:

<a href="<?php echo base_url() ?>directory_name/filename.php">Link</a>
荒芜了季节 2024-10-27 14:31:12

您还可以使用 PHP 短标签来使其更短。这是一个例子

<a href="<?= site_url('controller/function'); ?>Contacts</a>

或者使用 CI 内置的锚函数。

you can also use PHP short tag to make it shorter. here's an example

<a href="<?= site_url('controller/function'); ?>Contacts</a>

or use the built in anchor function of CI.

若水微香 2024-10-27 14:31:12

最好和最简单的方法是在 CodeIgniter 中使用锚标记,例如。

<?php 
    $this->load->helper('url'); 
    echo anchor('name_of_controller_file/function_name_if_any', 'Sign Out', array('class' => '', 'id' => '')); 
?>

请参阅https://www.codeigniter.com/user_guide/helpers/url_helper.html 详细信息

这肯定会起作用。

Best and easiest way is to use anchor tag in CodeIgniter like eg.

<?php 
    $this->load->helper('url'); 
    echo anchor('name_of_controller_file/function_name_if_any', 'Sign Out', array('class' => '', 'id' => '')); 
?>

Refer https://www.codeigniter.com/user_guide/helpers/url_helper.html for details

This will surely work.

笑红尘 2024-10-27 14:31:12

您还可以使用此代码

//test" class="btn btn-primary pull-right">

you can also use this code

//test" class="btn btn-primary pull-right">

待"谢繁草 2024-10-27 14:31:12
<a href="<?php echo site_url('controller/function'); ?>Compose</a>

<a href="<?php echo site_url('controller/function'); ?>Inbox</a>

<a href="<?php echo site_url('controller/function'); ?>Outbox</a>

<a href="<?php echo site_url('controller/function'); ?>logout</a>

<a href="<?php echo site_url('controller/function'); ?>logout</a>
<a href="<?php echo site_url('controller/function'); ?>Compose</a>

<a href="<?php echo site_url('controller/function'); ?>Inbox</a>

<a href="<?php echo site_url('controller/function'); ?>Outbox</a>

<a href="<?php echo site_url('controller/function'); ?>logout</a>

<a href="<?php echo site_url('controller/function'); ?>logout</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文