当前位置:首页 > CMS教程 > 其它CMS > 列表

Laravel 微信小程序后端搭建步骤详解

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-24 14:16:46 浏览: 评论:0 

这篇文章主要介绍了Laravel 微信小程序后端搭建步骤详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

1. 新建个 laravel 项目

laravel new aaaa

2. 执行命令运行起站点来

php artisan key:generate

3. 登录装着 mysql 服务的远程服务器,创建数据库及用户名

(1)登录 ssh root@218.45.23.456

(2)登录 mysql 输入命令 mysql -u root -p,输入密码登录成功显示 mysql>

(3)创建数据库 create database aaaaaaaa charset utf8mb4;

(4)创建远程用户 create user aaaa@‘%' identified by ‘密码';

(5)赋权 grant all privileges on aaaaaaaa.* to aaaa@“%”;

4. 改下 database/migrations 目录下的 **users_table.php 文件,添加上微信开放的字段

  1. //微信资料 
  2. $table->string(‘weapp_openid')->nullable()->comment(‘微信开放id'); 
  3. $table->string(‘weapp_session_key')->nullable()->comment(‘微信session_key'); 
  4. $table->string(‘nickname')->nullable()->comment(‘昵称'); 
  5. $table->string(‘weapp_avatar')->nullable()->comment(‘微信头像'); 
  6. $table->string(‘country')->nullable()->comment(‘国家'); 
  7. $table->string(‘province')->nullable()->comment(‘省份'); 
  8. $table->string(‘city')->nullable()->comment(‘所在城市'); 
  9. $table->string(‘language')->nullable()->comment(‘语言'); 
  10. $table->json(‘location')->nullable()->comment(‘当前地理信息'); 
  11. $table->enum(‘gender', [‘1', ‘2'])->default(‘1')->comment(‘性别默认男'); 
  12. $table->string(‘phone')->nullable()->unique(); 

5. 打开 config/app.php 把时区、语言换下

  1. ‘timezone' => ‘Asia/Shanghai'
  2. ‘locale' => ‘zh-CN'
  3. ‘fallback_locale' => ‘zh-CN'
  4. ‘faker_locale' => ‘zh-CN'

6. 打开 composer.json

require 里添加下面几个包

  1. require”: { 
  2.  “php”: “^7.1.3”, 
  3.  “fideloper/proxy”: “^4.0”, 
  4.  “laravel/framework”: “5.8.*”, 
  5.  “laravel/tinker”: “^1.0”, 
  6.  “jellybool/flysystem-upyun”: “^1.0”, 
  7.  “laravel/passport”: “^7.2”, 
  8.  “overtrue/laravel-wechat”: “~5.0” 
  9. }, 

7. 命令行执行 composer update

打开参照链接配置下

(1)又拍云参照配置 https://github.com/JellyBool/flysystem-upyun

(2)easywechart 参照配置 GitHub - overtrue/laravel-wechat: 微信 SDK for Laravel, 基于 overtrue/wechat

8.app/Http/Kernel.php 接口设置次数多些

  1. ‘api' => [ 
  2.  ‘throttle:60000,1', 
  3.  ‘bindings', 
  4. ], 

9. 打开.env 文件,配置好数据库和小程序、又拍云的保密信息

  1. DB_CONNECTION=mysql 
  2. DB_HOST=218.45.23.456 
  3. DB_PORT=3306 
  4. DB_DATABASE=aaaaaaaa 
  5. DB_USERNAME=aaaa 
  6. DB_PASSWORD=密码 
  7.  
  8. UP_OPERATOR_NAME=又拍云ftp用户名 
  9. UP_OPERATOR_PASSWORD=又拍云ftp密码 
  10.  
  11. WECHAT_MINI_PROGRAM_APPID=小程序APPID 
  12. WECHAT_MINI_PROGRAM_SECRET=小程序SECRET 

10. 执行 php artisan migrate,生成数据库表 7 张表

  1. Migration table created successfully. 
  2. Migrated: 2014_10_12_000000_create_users_table 
  3. Migrated: 2014_10_12_100000_create_password_resets_table 
  4. Migrated: 2016_06_01_000001_create_oauth_auth_codes_table 
  5. Migrated: 2016_06_01_000002_create_oauth_access_tokens_table 
  6. Migrated: 2016_06_01_000003_create_oauth_refresh_tokens_table 
  7. Migrated: 2016_06_01_000004_create_oauth_clients_table 
  8. Migrated: 000005_create_oauth_personal_access_clients_table 

11. 执行命令 php artisan passport:install

  1. Client ID: 1 
  2. Client secret: 
  3. Password grant client created successfully. 
  4. Client ID: 2 
  5. Client secret: 

12.config/auth.php,API 的 dirver 改成 passport

  1. 'api' => [ 
  2.    'driver' => 'passport'
  3.    'provider' => 'users'
  4.    'hash' => false, 
  5.   ],<br data-filtered="filtered"

一开始差不多就这些吧。

Tags: Laravel微信小程序 Laravel后端

分享到: