前言 实现一个博客的侧边栏的链接,然后顺便对其进行单元测试的过程. Archives 一.视图中展示SQL结果 一条 sql 语句[查询] select year(created_at) year, monthname(created_at) month, count(*) published from posts group by year, month order by created_at desc 对应的 ORM语句[测试] $ php artisan tinker App\Post::…
利用Laravel 搭建oauth2 API接口 要求 laravel 5.4以上 安装 $ composer require laravel/passport 在配置文件 config/app.php 的providers 数组中注册 Passport 服务提供者: LaravelPassportPassportServiceProvider::class, 迁移数据库 执行完后会生成oauth需要的表 $ php artisan migrate 这一步注意,执行的时候可能会报错 Syntax…
前言 一.基础 Ref: Build a REST API with Laravel API resources Goto: [Node.js] 08 - Web Server and REST API 二.资源 Goto: Laravel 5.4 From Scratch[原讲座] Goto: https://laravel.com/docs/5.4 Ref: Laravel China 社区 三.快捷键 [1] 自动生成 html 基本的 head, body 代码模板. [2] exten…
突然遇到的问题  就是使用Laravel进行开发API接口的时候  发现在表单验证不通过的时候返回了登录页 猜测问题应该是因为表单验证失败后进行了重定向导致的 因为返回状态码200 网上找了好久没找到相关解决方案 只能自己猜测一下解决问题 我在app\Http\Controller\Controller.class.php里面重写了validate这个方法 public function validate($request, $rules, $message){ $Validator = Val…
laravel jwt 做API 退出登录(注销) 该怎么弄? 如何让token失效 php框架 laravel 2.1k 次浏览 问题对人有帮助,内容完整,我也想知道答案0问题没有实际价值,缺少关键内容,没有改进余地 laravel jwt 做API 退出登录(注销) 该怎么弄? 如何让token失效?百度找了一圈都没有.. 关注 | 4 收藏 | 1 评论 邀请回答 编辑 seeya001  97 2018-03-29 提问 默认排序时间排序 3 个回答 答案对人有帮助,有参考价值0答案没帮…
laravel使用Dingo\Api写接口跟android对接时,android一直反应解析错误,无法解析数据. { "status_code":200, "message":"请求成功", "data":[ { "type":2, "message_id":1383, "title":"视频点赞", "content":&qu…
1.路由经过中间件方面不同 打开kerenl.php就可以看到区别 protected $middlewareGroups = [ 'web' => [ \App\Http\Middleware\EncryptCookies::class, \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \Illuminate\Session\Middleware\StartSession::class, // \Illumina…
Introduction Almost all successful internet based companies have APIs. API is an acronym for Application Programming Interface. APIs allows different systems to communicate with one another. Let’s say you have developed an android application for our…
Laravel 自带了两种测试类型 Feature Test: 功能测试.针对类似接口这种流程性的测试. Unit Test: 单元测试.针对单个函数这种输入输出结果的测试. 新建一个 Feature Test php artisan make:test FinishOrderTest 项目根目录下多了一个文件 tests/Feature/FinishOrderTest.php 安装 phpunit 要执行测试案例,就需要安装 phpunit,否则会报错 zsh: command not fou…
前言 一.常用的解决方案 React 前端 + PHP (Laravel) 后端 Such as "some exposure to WEB API’s and/or RESTful“. 使用PHP,但不必关心 return view,那么我们应该关心什么呢? 二.本篇提到的接口 Ref: PHP开发APP接口  服务端发送 - html [1] 不是php面相对象的接口,而是app接口,以下就是个例子(URL): [2] APP (通信) 接口定义,仨条件: 接口地址 接口文件 接口数据  客…