Yii框架类似POST和GET的功能

发布于 2025-01-03 01:08:21 字数 462 浏览 0 评论 0原文

任何人都可以将此代码转换为 yii 框架吗?

文件名:text.php

<form method='POST' action='index.php'>
<input type='text' name='name'>
<input type='submit' value='SUBMIT'>
</form>

那么text中的文字就会在索引中查看。

文件名:index.php

$text=$_POST['name'];
echo "$text";

谁能在 Yii 中实现这段代码?以及用于使用 GET 方法的代码是什么,假设index.php将是控制器,text.php将是视图文件

(我在这里试图实现的是传递名为的文本框的值控制器的“名称”)?

有人可以帮忙吗?

can anyone convert this code into the yii framework?

file name: text.php

<form method='POST' action='index.php'>
<input type='text' name='name'>
<input type='submit' value='SUBMIT'>
</form>

then the text in the text will be viewed in the index.

file name: index.php

$text=$_POST['name'];
echo "$text";

Can anyone implement this code in Yii? and what is also the code used for using GET method , assuming that the index.php will be the controller and the text.php will be the view file

(what i am trying to achieve here is to pass the value of the textbox named as 'name' to the controller)?

can anyone help?

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

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

发布评论

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

评论(2

孤城病女 2025-01-10 01:08:21

Yii 表单生成:

<?= CHtml::beginForm( array("controller/action") ) ?>
<?= CHtml::textField("name", "") ?>
<?= CHtml::endForm() ?>

Yii CHtml docs

此外,您还需要实现 CModel 或 CForm 类来验证形式。

Yii form generation:

<?= CHtml::beginForm( array("controller/action") ) ?>
<?= CHtml::textField("name", "") ?>
<?= CHtml::endForm() ?>

Yii CHtml docs

Also you need implement CModel or CForm class to validate form.

失去的东西太少 2025-01-10 01:08:21

您必须在控制器中使用 $_POST['name'] 来获取该值,就像您所做的那样。

如果您使用 GET 方法来执行此操作,它宁愿是控制器中方法的参数:

public function actionSomething($name) {
    ...
}

You have to use $_POST['name'] in your controller to get the value, just like you did it.

If you do it with the GET method, it would rather be a parameter of a method in your controller:

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