CodeIgniter - 链接到视图中另一个页面的正确方法
我想知道是否有人可以告诉我从视图中链接到另一个页面的正确方法。
有没有这个功能或者只是常见的功能
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我假设您的意思是应用程序中的“内部”。
您可以创建自己的
标记并在 href 中插入一个 URL,如下所示
,或者您可以使用URL 帮助器以这种方式生成
标记
所以...使用它...
并且将生成
对于附加评论问题
我将使用我的第一个例如
...
对于图像(和其他资产),我不会将文件路径放在 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 thisOR you can use the URL helper this way to generate an
<a>
tagSo... to use it...
and that will generate
For the additional commented question
I would use my first example
so...
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.
最好的方法是使用以下代码:
The best way is to use the following code:
您还可以使用 PHP 短标签来使其更短。这是一个例子
或者使用 CI 内置的锚函数。
you can also use PHP short tag to make it shorter. here's an example
or use the built in anchor function of CI.
最好和最简单的方法是在 CodeIgniter 中使用锚标记,例如。
请参阅https://www.codeigniter.com/user_guide/helpers/url_helper.html 详细信息
这肯定会起作用。
Best and easiest way is to use anchor tag in CodeIgniter like eg.
Refer https://www.codeigniter.com/user_guide/helpers/url_helper.html for details
This will surely work.
您还可以使用此代码
//test" class="btn btn-primary pull-right">
you can also use this code
//test" class="btn btn-primary pull-right">