PHP Driver | MongoDB 4.0 | MongoDB 3.6 | MongoDB 3.4 | MongoDB 3.2 | MongoDB 3.0 | MongoDB 2.6 |
---|---|---|---|---|---|---|
PHPLIB 1.4 + mongodb-1.5 | ✓ | ✓ | ✓ | ✓ | ✓ | |
PHPLIB 1.3 + mongodb-1.4 | ✓ | ✓ | ✓ | ✓ | ✓ | |
PHPLIB 1.2 + mongodb-1.3 | ✓ | ✓ | ✓ | ✓ | ||
PHPLIB 1.1 + mongodb-1.2 | ✓ | ✓ | ✓ | ✓ | ||
PHPLIB 1.0 + mongodb-1.1 | ✓ | ✓ | ✓ | |||
mongodb-1.0 | ✓ | ✓ |
日度归档:2019年4月18日
[WARNING] 找不到编译器:wepy-compiler-sass。
Error: Cannot find module 'less'
[WARNING] 找不到编译器:wepy-compiler-sass。
解决办法
npm install less --save-dev
npm install wepy-compiler-less --save-dev
npm install
npm rebuild node-sass
laravel实现跨域的中间件
# 创建中间件
php artisan make:middleware EnableCrossRequestMiddleware
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
class EnableCrossRequestMiddleware
{
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$origin = $request->header('Origin');
if ($origin) {
$exps = [
'/.*\.xxx\.com$/', # 匹配下自己的域名
'/.*localhost.*/',
'/.*127.0.0.1.*/',
'/.*10.*/',
];
foreach ($exps as $exp) {
$matchCount = preg_match($exp, $origin, $matches);
if ($matchCount && isset($matches[0])) {
if ($request->isMethod('OPTIONS')) {
$response = response('');
$response->withHeaders([
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Allow-Origin' => $origin,
'Access-Control-Allow-Methods' => 'GET, POST',
'Access-Control-Allow-Headers' => 'Content-Type, Token',
'Access-Control-Max-Age' => 3600 * 24,
]);
return $response;
}
$response = $next($request);
$response->withHeaders([
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Allow-Origin' => $origin,
]);
return $response;
}
}
}
return $next($request);
}
}
另外需要关闭csrf保护否则会413