Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道如何在 Yii 框架的操作视图中创建反向链接。
我想使用CHtml::link('Back',Yii::app()->request->urlReferrer);,但这不知何故只是不想工作?
CHtml::link('Back',Yii::app()->request->urlReferrer);
这个框架很新。
如果我测试它,我没有看到“返回”文本。:(
-> 但是,如果您想查看链接,只需在 CHtml 之前使用“echo”:
echo CHtml::link('Back',Yii::app()->request->urlReferrer);
这很好用。:)