在项目routes/web.php文件中添加了自定义的路由后,访问localhost/index.php/aaa,可以正常访问,但是去掉index.php后,提示404 Not Found 1. 按照Laravel 5.6 文档,修改了public/.htaccess , 增加两行后,重启Apache2后,访问还是不行,故还原此文件 如果您的web主机不允许FollowSymlinks选项,请尝试用Options+SymLinksIfOwnerMatch替换它. 2. 查看/etc/apache…
在使用Apache情况下: Laravel 框架通过 public/.htaccess 文件来让网址中不需要 index.php.如果你的服务器是使用 Apache ,请确认是否有开启 mod_rewrite 模块. 假设 Laravel 附带的 .htaccess 文件在 Apache 无法生效的话,请尝试下面的方法: <IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </If…
1.首先保证你的config/auth.php 中 guards 的 api 的 driver 选项改为 passport 2.注册中间件,在 app/Http/Kernel.php 文件中的 $routeMiddleware 数组中添加如下中间件 protected $routeMiddleware = [ 'client.credentials'=>\Laravel\Passport\Http\Middleware\CheckClientCredentials::class, ]; 然后在需…
{"error":"invalid_credentials","message":"The user credentials were incorrect."} 之前授权成功,更新了下数据库,然后授权就报 用户凭据不正确 ,搞了好久,索性不管了,回家后打开没多久就解决了 下面说一下问题的大致方向 passport的那些配置都正确,storage下的key文件也都存在,密钥请求接口如下: oauth_clients 表数据如下:…
场景:要实现一个标签云,通过循环把标签渲染,然后单击标签的时候实现跳转,跳转路由一样,通过唯一参数来实现请求不同的数据 因此,就需要在for循环中来携带参数,本节所讲的是路由使用对象的形式(别名)来实现的 <router-link :to="{name:'blogDetailsLink'} ></router-link > 如果你也是这种情况,那你就可以继续往下看了 1.在home.vue中代码实现携带参数 <li v-for="item in laber…
实现方式很简单,在属性前加:,表示绑定 :style="{'background':item.bgColor} 代码样例: <li v-for="item in laber_cloud"> <router-link :style="{'background':item.bgColor}" >{{item.name}}</router-link> </li>…
nginx服务器,使用laravel框架开发后台接口.get请求正常,但是post请求一直报错.H5和APP都不成功,code=419. 解决办法: 找到 VerifyCsrfToken.php文件(app/http/middleware)添加如下方法 public function handle($request, \Closure $next){ // 使用CSRF //return parent::handle($request, $next); // 禁用CSRF return $nex…
1. 安装jquery npm install jquery --save-dev 2.在build/webpack.base.conf.js中添加如下内容 var webpack = require('webpack') plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery" }) ], 位置如下: 3.在src/main.js文件中 引入jquery import $ from '…
1.安装路由(安装过的跳过此步) // 进入项目根目录 cd frontend // 安装 npm install vue-router --save-dev 2.在入口文件main.js中引入路由 import VueRouter from 'vue-router' 3.在main.js中使用(全局) Vue.use(VueRouter) 4.设置路由 在main.js中引入组件 import Home from './components/home/Home' import Footer f…
1.首先通过 Composer 包管理器安装 Passport: composer require laravel/passport 注:如果安装过程中提示需要更高版本的 Laravel:laravel/passport v5.0.0 requires illuminate/http ~5.6,可以通过指定版本来安装 composer require laravel/passport ~4.0. 2.注册服务提供者 将 Passport 的服务提供者注册到配置文件 config/app.php …