dqlhsm9820 2013-01-11 15:20
浏览 75
已采纳

在laravel中处理数组

I am learning laravel and trying to create a community with laravel. I stuck at some part and need to ask you guys.

Right now I am trying to displaying posts to reader.

This is what i accomplish so far http://i.imgur.com/lc5gX.jpg

with this code :

public $restful = true;
public function get_index($title = '')
{
    //Do we have an arguement?
        if(empty($title))
        {return Redirect::to('dashboard');}

    $view = View::make('entry');
    $query = DB::table('threads')->where('title', '=', $title)->first();

    //Do we have this thread?
        if(!$query)
        {return Redirect::to('entry/suggest');}
    //We have? so lets rock it!
    $view->title = $query->title; //we get the title.

    $thread_id = $query->id;

    //getting posts.

    $posts = DB::table('posts')->where('thread_id', '=', $thread_id)->get();


    $view->posts = $posts;

  return $view;
}

and the view is :

<div id="entrybox">
    <h2>{{$title}}</h2>
@foreach($posts as $post)
    <p class="entry"><span class="entrynumber">1</span><span class="entry_text">{{$post->post_entry}}</span></p>
    <p align="right" class="edate"><span class="entry_user">{post_row.POST_USERNAME}</span> <span class="entry_date">{post_row.DATE}</span></p>
@endforeach
</div>

But the hard part(for me) is integrate posts with poster's username or other user info like e-mail for moderate privileges. However hey are in 'users' table.

Lets say $posts variable holds data of 10 posts for a thread *a post has thread_id , poster_userid, post, posted_date.

How can i grab username from 'users' table and send it to my view? I am sure i need to use foreach after selecting posts from database I just dont know how to handle arrays in foreach.

  • 写回答

2条回答 默认 最新

  • douyu3145 2013-01-11 15:42
    关注

    Look up how to set up models and their relationships using Eloquent ORM: http://laravel.com/docs/database/eloquent

    Specifically http://laravel.com/docs/database/eloquent#relationships

    You should have three models, Thread, Post and User (change poster_userid to user_id... or you can keep it but I wouldn't suggest it... just keep things simple. You could also use author_id or maybe even poster_id if that floats your boat.. just be sure to change 'user_id' out with what you choose)

    //application/models/User.php
    
    class User extends Eloquent {
    
     public function posts()
     {
          return $this->has_many('Post', 'user_id');
     }
    }
    

    and

    //application/models/Post.php
    class Post extends Eloquent {
    
     public function author()
     {
        return $this->belongs_to('User', 'user_id');
     }
    
     public function thread()
     {
        return $this->belongs_to('Thread', 'thread_id');
     }
    }
    

    and

     //application/models/Thread.php
        class Thread extends Eloquent {
    
         public function posts()
         {
              return $this->has_many('Post', 'thread_id');
         }
    
        }
    

    and instead of

    $query = DB::table('threads')->where('title', '=', $title)->first();
    
    //Do we have this thread?
        if(!$query)
        {return Redirect::to('entry/suggest');}
    //We have? so lets rock it!
    $view->title = $query->title; //we get the title.
    
    $thread_id = $query->id;
    
    //getting posts.
    
    $posts = DB::table('posts')->where('thread_id', '=', $thread_id)->get();
    

    I would just put

    $thread = Thread::where('title', '=', $title)->first();
    
    if(!$query)
        {return Redirect::to('entry/suggest');}
    
    $posts = $thread->posts()->get();
    //or if you want to eager load the author of the posts:
    //$posts = $thread->posts()->with('author')->get();
    

    Then in your view you can look up the user's name by the following:

    $post->author->username;
    

    Easy peezy.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?