在Laravel中实现多图像上传系统时遇到问题

时间:2014-06-19 18:11:35

标签: php mysql file-upload laravel laravel-4

在我的网络应用程序中,人们可以创建帖子。 Alonng有这些帖子,他们可能会上传多张图片。为此,我有一个帖子表和一个图像表。帖子有很多图片,图片属于帖子。因此,images表具有image_path列和post_id列。我的麻烦是得到post_id。因为在上传帖子之前我无法获得帖子ID,所以我无法设置图片所属的帖子。无论如何,这里有一些代码:

public function create(){

    $post = new Post;

    $post->title=Input::get('title');
    $post->body=Input::get('body');
    $post->category=Input::get('category');

    $post->save();

    $images = Input::file('images');

    foreach($images as $image) {

        $destinationPath = 'public/uploads/';
        $filename = $image->getClientOriginalName();

        $image->move($destinationPath, $filename);

        $id=Auth::id();

        $file = new Image();
        $file->image_path = 'uploads/' . $image->getClientOriginalName();
        $file->description = '';
        $file->post_id=Input::get('post_id');

        $file->save();

}

解决此问题的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

使用Post保存$post->save()后,您可以使用以下网址获取ID:

// ...
$post->save();
/...

$file->post_id = $post->id;

您可以尝试这样做:

// ...
$post->save();

$destinationPath = 'uploads/';
$images = Input::file('images');
foreach($images as $image) {
    $filename = $image->getClientOriginalName();
    $image->move($destinationPath, $filename);

    $file = new Image();
    $file->image_path = 'uploads/' . $image->getClientOriginalName();
    $file->description = '';
    $post->images->save($file);
}