我有一个上传表单,它工作得很好,照片正在上传,但问题是sfthumbnail插件似乎不工作。没有生成缩略图。这是我的代码:

      // /lib/form/UploadForm.class.php

      public function configure()
      {
      $this->setWidget('photo', new sfWidgetFormInputFileEditable(
      array(
        'edit_mode' => !$this->isNew(),
        'with_delete' => false,
        'file_src' => '',
         )
      ));

      $this->widgetSchema->setNameFormat('image[%s]');

      $this->setValidator('photo', new sfValidatorFile(
        array(
        'max_size' => 5000000,
        'mime_types' => 'web_images',
        'path' => '/images/',
        'required' => true,
        'validated_file_class' => 'sfMyValidatedFileCustom'
            )
       ));

这里是验证类
    class sfMyValidatedFileCustom extends sfValidatedFile{

    public function save($file = null, $fileMode = 0666, $create = true, $dirMode = 0777)
    {
      $saved = parent::save($file, $fileMode, $create, $dirMode);
      $thumbnail = new sfThumbnail(150, 150, true, true, 75, '');
      $location = strpos($this->savedName,'/image/');
      $filename = substr($this->savedName, $location+15);
      // Manually point to the file then load it to the sfThumbnail plugin
      $uploadDir = sfConfig::get('sf_root_dir').'/image/';
      $thumbnail->loadFile($uploadDir.$filename);
      $thumbnail->save($uploadDir.'thumb/'.$filename,'image/jpeg');
      return $saved;
    }

我的行为准则是:
    public function executeUpload(sfWebRequest $request)
    {
    $this->form = new UploadForm();
    if ($request->isMethod('post'))
    {
      $this->form->bind(
        $request->getParameter($this->form->getName()),
        $request->getFiles($this->form->getName())
      );
      if ($this->form->isValid())
      {
           $this->form->save();
           return $this->redirect('photo/success');
      }
    }
     }

我不能百分之百确定我是否做得对,但这是我从文件和其他例子中看到的。

最佳答案

不能使用$this->savedName,因为它是sfValidatedFile的受保护值。你应该改用$this->getSavedName()
我不明白这部分:

$location = strpos($this->savedName,'/image/');
$filename = substr($this->savedName, $location+15);

为什么要提取文件名,最后,当用/image/加载文件时,要重新添加loadFile
无论如何,我在你的课上做了些改变。我没有测试过,但我觉得应该可以。
class sfMyValidatedFileCustom extends sfValidatedFile
{
  public function save($file = null, $fileMode = 0666, $create = true, $dirMode = 0777)
  {
    $saved    = parent::save($file, $fileMode, $create, $dirMode);
    $filename = str_replace($this->getPath().DIRECTORY_SEPARATOR, '', $saved);

    // Manually point to the file then load it to the sfThumbnail plugin
    $uploadDir = $this->getPath().DIRECTORY_SEPARATOR;

    $thumbnail = new sfThumbnail(150, 150, true, true, 75, '');
    $thumbnail->loadFile($uploadDir.$saved);
    $thumbnail->save($uploadDir.'thumb/'.$filename, 'image/jpeg');

    return $saved;
  }

09-19 19:15