-1

在 OSClass 中,我需要从 to 获取item-post.php参数ItemActions.php。我知道两种方式,一种是like,$aItem['catId']另一种是Params::getParam('catId')

但第二个不适用于文件类型。还有什么办法可以得到file type吗?

因为,我使用以下代码,

$this->uploadItemResources( $aItem['photos'] , $itemId );

$this->uploadItemResources( $aItem['layout'] , $itemId );

此处照片已正确插入。但我没有得到布局价值。在 item-post.php 我的代码是正确的。

4

1 回答 1

1

这应该有效:

$someFiles = Params::getFiles('param_name');

在你的情况下

$someFiles = Params::getFiles('photos');

$otherFiles = Params::getFiles('layout');
于 2013-04-13T17:04:59.590 回答