gpt4 book ai didi

jquery - 删除不起作用方法不允许 (#405) gridview yii2

转载 作者:行者123 更新时间:2023-12-03 23:03:27 25 4
gpt4 key购买 nike

这是我的 gridview,我从类 actionColumn 更改为:

[   'format' => 'html',
'contentOptions'=>['style'=>'width: 5px;'],
'value' => function($model) {
if($model->id == Yii::$app->user->identity->id) {
return Html::a('<i class="glyphicon glyphicon-share-alt"></i>').' '.
Html::a('<i class="glyphicon glyphicon-pencil"></i>', ['update', 'id' => $model->id]).' '.
Html::a('<i class="glyphicon glyphicon-trash"></i>', ['delete', 'id' => $model->id], ['data' => ['confirm' => 'Do you really want to delete this element?','method' => 'post']]);
}
return '';
},
],

这给了我一个错误。

Method Not Allowed (#405)

Method Not Allowed. This url can only handle the following request methods: POST.

当我再次更改为 actionColumn 时,它可以正常工作,但我更改了代码,它只是给了我一个错误。

最佳答案

由于 html 格式化程序将使用 HtmlPurifier清理该值。 ,您只需将格式更改为 raw 即可。

了解更多:http://www.yiiframework.com/doc-2.0/guide-output-formatter.html#other-formatters

关于jquery - 删除不起作用方法不允许 (#405) gridview yii2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32355490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com