dope2008

4451 经验值

同样遇到这个问题,你的回复是解决了这个问题~不过我还不是很明白~ 为何newTodo的title不等于空的时候,执行下面的语句就可以解决?

是只有我一个人觉得老师说话速度快吗?哈哈~

VUE是不是不合适做网站,因为数据都是由AJAX拿过来的,对SEO不好。
只合适做后台系统??

想不到呀。

$comment = Comment::find($request->id);

$comment->update(['status' => 1]);

这个好象执行了二条SQL吧,,,一条select 一条update

还不如

Comment::where('id',$request->id)->update(['status' => 1]);

Trading::selectRaw('sum(money) as money,DATE_FORMAT(created_at,"%Y-%m-%d") as date')->get()


    protected function asJson($value)
    {
        return json_encode($value, JSON_UNESCAPED_UNICODE);
    }

在model写上这个

1。5.4版本中怎么样加回 Route::controller();

2。比如Auth::routes(); 我想新增一个自定义的 Route::abc() 有没有办法新增??

假如
Route::abc('index')
等于
get /index =IndexController@index
post /index =IndexController@save

一个数组怎么样做到平均分布

例如原数组[1,1,2]结果[1,2,1]
例如原数组[2,1,1,2]结果[1,2,1,2]
例如原数组[2,1,1,1,2]结果[1,2,1,2,1]
例如原数组[3,1,1,1,2]结果[1,2,1,3,1]

A 有N个.....B有M个......怎么样做到平均分布

可以是return true 还是一样的。

        $weChat = app('wechat');
        return $weChat->payment->handleNotify(function ($notify, $successful) {
          
         //我的处理
            
            return true; // 返回处理完成
        });

是不是我要返回什么,才可以停掉的