All Projects → cuiwang → Mingyuyue

cuiwang / Mingyuyue

Licence: mit
古诗词取名后台

Projects that are alternatives of or similar to Mingyuyue

Laravel User Settings
Simple and persistent boolean settings per user
Stars: ✭ 34 (-8.11%)
Mutual labels:  laravel
Nova Bar Metrics
A Laravel Nova tool for bar chart metrics and frequency distributions.
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Time Traveller
Time travel for your Laravel Models.
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Nideadmin
【未完成】NideAdmin - 基于 Vue.js + Egg.js 的微信小程序后台框架
Stars: ✭ 35 (-5.41%)
Mutual labels:  laravel
Laravel Weather
🌤️ A wrapper around Open Weather Map API (Current weather)
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Scrutiny
Ensure your laravel-based project is running in the correct server environment
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Backend Interview Prep Questions
A few questions & data to help you prepare for the Slack HQ backend interview
Stars: ✭ 34 (-8.11%)
Mutual labels:  plpgsql
Stationery Cms
💡基于laravel-admin1.6.0开发的办公用品管理系统,含excel导出、查询快递功能
Stars: ✭ 37 (+0%)
Mutual labels:  laravel
Lynnhosting
Open Source, Web Hosting Automation built with Laravel
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Laravel Personality Insights
👩 👱 Using IBM Watson Personality Insights Service with Laravel 5
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Htmlcache
Laravel middleware to cache the rendered html
Stars: ✭ 35 (-5.41%)
Mutual labels:  laravel
Validator
Client-side javascript validator library ports from Laravel 5.2
Stars: ✭ 35 (-5.41%)
Mutual labels:  laravel
Ys Tinify Laravel
Tinify API support with laravel
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Google Analytics Bigquery Data Export
Export Google Analytics data from BigQuery using Standard or Legacy SQL.
Stars: ✭ 34 (-8.11%)
Mutual labels:  plpgsql
Nuswhispers
NUSWhispers source.
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Nova Laravel Update Card
Check if you're running the latest Laravel version right from your Nova dashboard.
Stars: ✭ 34 (-8.11%)
Mutual labels:  laravel
Laravel Qrcode Ecommerce
This is a complete laravel project that handles qrcodes, payments, api/microservices, and ecommerce
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel
Laravel Queue Database Ph4
Laravel Database Queue with Optimistic locking
Stars: ✭ 37 (+0%)
Mutual labels:  laravel
Laravel Ip Gateway
Laravel IP Gateway
Stars: ✭ 37 (+0%)
Mutual labels:  laravel
Laravel Support
Rinvex common support helpers, contracts, and traits required by various Rinvex packages. Validator functionality, and basic controller included out-of-the-box.
Stars: ✭ 36 (-2.7%)
Mutual labels:  laravel

mingyuyue 名余曰

古诗词取名后台 名余曰

支撑微信小程序 [ 名余曰 ] , 通过拆分古文生成名字.

微信小程序请移步 名余曰微信小程序

基于Laravel 5.3,PHP >=5.6.10,MYSQL >=5.5

任何问题欢迎加入QQ群交流: 287021519 知无不言,言无不尽

程序运行说明

  1. 搭建好LAMP或WAMP环境 , 创建好站点 , 复制所有文件到站点根目录**(给好权限)**
  2. 复制根目录下env_example.txt 重命名为.env
  3. 导入根目录下的mingyuyue.sql文件到你的数据库
  4. 修改.env中DB_开头的内容,为你的数据库信息

基本功能

  1. 后台录入古文
  2. 去除古文中特殊字符和常用语气词
  3. 单个字拆分或两个字拆分
  4. 随机取名
  5. 三才五格分析
  6. 收藏功能
  7. 其他

接口说明

//==================后台录入古文======================
//显示网页录入
Route::get('/showStoreDataView', '[email protected]');
//post 提交网页存储srcdata
Route::post('/storeData','[email protected]');
//==================================================

//====================录入后调用生成名字=========================
//根据srcdata批量生成名字库
Route::get('/name', '[email protected]');
//根据srcdata id指定生成名字库
Route::get('/makename/{id}', '[email protected]');
//===========================================================

//==================微信小程序接口======================
//是否中文
Route::get('/ischinese/{s}', '[email protected]');
//获取微信返回的session code
Route::get('/wxCode/{code}', '[email protected]');
//获取登录后微信信息
Route::post('/wxInfo', '[email protected]');
//用微信数据注册到本系统
Route::post('/wxRegister', '[email protected]');
//获取名字列表
Route::get('/getName/{id}/{page}/{type?}', '[email protected]');
//获取srcdata列表
Route::get('/getSrcData/{size?}', '[email protected]');
Route::get('/getSrcDataDetails/{title}/{page}', '[email protected]');
//获取一条scrdata
Route::get('/getOneSrcData/{id}', '[email protected]');
//注入已读
Route::get('/hasRead/{id}/{uid}', '[email protected]');
//获取三才五格分数等
Route::get('/getScoreData/{firstname}/{secondname}', '[email protected]');
//修改用户姓
Route::get('/updateUserFirstName/{id}/{name}', '[email protected]');
//随机获取一个名字
Route::get('/randOneName/{uid}', '[email protected]');
//查找名字来源
Route::get('/findNameInfo/{uid}/{name}', '[email protected]');
//添加到历史记录
Route::post('/addHistory', '[email protected]');
//添加到收藏
Route::post('/addStore', '[email protected]');
//删除历史
Route::post('/delHistory', '[email protected]');
//删除收藏
Route::post('/delStore', '[email protected]');
//更新收藏
Route::post('/updateStore', '[email protected]');
//获取历史记录列表
Route::post('/getHistory', '[email protected]');
//获取收藏列表
Route::get('/getStore/{uid}/{page?}', '[email protected]');
//获取精简收藏列表
Route::get('/getSimpleStore/{uid}', '[email protected]');
//搜索名字
Route::get('/searchName/{uid}/{keyword}/{page?}', '[email protected]');
//康熙字典查找名字
Route::get('/findData/{name}', '[email protected]');

//===========================================================
//[危险操作]清空指定表
Route::get('/clearTable/{id}','[email protected]');
//===========================================================

后台录入操作流程

  1. 后台录入古文
  2. 调用生成名字接口 name/makename
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].