laravel 5.0

1,我用laravel5.0学习,Request 下面好像没有all方法,但是手册上写的是有的,

public function store()
    {
        $input = Request::all();//我使用PHPstorm没提示all,及时自己写上all 也会报错
        Article::create($input);
        return redirect('/');
    }

2,Article::latest()->get(); 模型下面没有latest()->get();

public function index()
   {
       $articles = Article::latest()->get();

       return view('articles.index',compact('articles'));
   }

3,$articles = Article::find($id);模型Article下面没有像手册上写的findOrFail 方法。

请问这些要怎么解决?
openwrtmail

将你引用的命名空间贴出来~@stranger
针对问题1,官方文档讲的很清楚:
Remember, if you are in a namespace, you will have to import the Request facade using a use Request; statement at the top of your class file.
问题2和3应该是命名空间引用问题,先贴出来吧。

stranger
这是我引用的空间 @openwrtmail
namespace App\Http\Controllers;

use App\Article;
use App\Http\Requests;
use App\Http\Controllers\Controller;

use Illuminate\Http\Request;
use Illuminate\Http\Response;
openwrtmail


use Illuminate\Http\Request;修改成
use Request;

openwrtmail

这样改对么?@jellybool
我之前貌似也碰到类似问题,后来仔细看文档解决的
use Request;

stranger

use Illuminate\Http\Request;修改成
use Request; 后 Request 下面就不提示任何方法了。

JellyBool

你使用了ide_helper没有? @stranger

stranger

@JellyBool
刚安装了ide_helper,还是不行。Request 下还是没all方法。
ErrorException in ArticleController.php line 43:
Non-static method Illuminate\Http\Request::all() should not be called statically, assuming $this from incompatible context

JellyBool

你确定你像 openwrtmail 这样修改了?

stranger

@JellyBool @openwrtmail 按照你俩说的可以了。安装ide_helper 后 ,再把use Illuminate\Http\Request;修改成
use Request; 就行了。 谢谢你俩

use Illuminate\Http\Request; 不是系统自己生成的吗,为什么要成 use Request

JellyBool

config/app.php下有定义这一行:

 'Request'   => Illuminate\Support\Facades\Request::class,

默认的use Illuminate\Http\Request;在5.1可以直接

 public function store(Request $request)
 {
}
stranger

@JellyBool
这是系统自带的,是定义好的。之前就是不能使用 Request::all Request::get

MiYogurt

@JellyBool ide_helper
进不去如何解决。

openwrtmail

这个你还是没仔细看文档啊。文档中写的很清楚

@stranger

stranger

@openwrtmail

文档里的代码是这样的

openwrtmail

问题是你的代码不是依赖注入的方式吧~~~
你跟下面的用法是一样的吧。
@stranger

openwrtmail

补充 @stranger
你的代码中用的
$input = Request::all();//我使用PHPstorm没提示all,及时自己写上all 也会报错
静态类才能直接这样使用,而不需要实例化。
laravel提供了一个Facade让非静态类不需要实例化直接使用。
你需要先引入Facade中声明的类,如下面所示
'Request' => 'Illuminate\Support\Facades\Request',
Facade给Illuminate\Support\Facades\Request定义了缩写Request。
所以你代码中只需use Request即可。

stranger

@openwrtmail 我懂了 谢谢啊

stranger

@openwrtmail
public function store( Request $request)
{
//
$input = request>all();vardump(request->all(); var_dump(input);
Article::create(input); } 我用all 方法获得的数据不完全,数据库中会少存入一个字段的值。但是 var_dump()数据是存在的。 用request->get();方法 一一获得表单里的值,再存入数据库就行了。

openwrtmail

哪个字段? @stranger

stranger

@openwrtmail 上图是我代码和数据库,页面的截图

openwrtmail

你可以将数据库字段类型发给我看看吗 ~~~ @stranger
你可以多试试 找出规律 什么东西一定存不上 什么东西可以存上 我看你上面英文有存上的 是不是字段类型 或者编码有问题。

stranger

@openwrtmail

字段类型没问题啊。就是存不进去

openwrtmail

@stranger
将title修改成string类型
将published_at 修改成timestamp试试

stranger

@openwrtmail 好像没有 string类型吧,只有 char varchar

openwrtmail

@stranger 额
title为varchar没有问题
尝试将 Article::create($input);的返回值打印出来吧。

$article = Article::create($input);
dd($article);
stranger

@openwrtmail

openwrtmail

你在Article.php设置$fillable属性包含title吧

protected $fillable = [
        'title',
        'intro',
        'content',
        'published_at'
    ];

@stranger

openwrtmail

@stranger
看你打印出来的信息 table是null fillable只有content ,说明你没有将title放到数组。

你在Article.php设置一下,intro字段名改成你自己的。

protected $table = 'articles';
    protected $fillable = [
        'title',
        'intro',
        'content',
        'published_at'
    ];
    protected $dates = ['published_at'];

stranger

@openwrtmail 原来是这里错了。现在可以了。谢谢

openwrtmail

@stranger 不客气。
可以参看官方文档 这个部分Mass Assignment