Download the PHP package songyz/laravel-simple-orm-curd without Composer
On this page you can find all versions of the php package songyz/laravel-simple-orm-curd. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-simple-orm-curd
Laravel-simple-orm-curd
简单、实用、curd接口生成、脚手架
1、引入composer
2、加载服务
-
Laravel
打开
config/app.php
文件,找到providers
数组中添加以下代码 -
Lumen
打开
bootstrap/app.php
,添加
3、加载配置文件
-
Laravel
-
Lumen
复制
\vendor\songyz\laravel-simple-orm-curd\src\config\songyz_scaffold.php
文件,放在config
目录下。songyz_scaffold.php
文件,具体信息如下:
4、使用命令创建模块
-
1、生成模块
api.php 自动生成路由,
生成的路由,未采用restFull模式,为了简化、方便,所以采用全是post方式,您可以修改请求方式,
get
any
等方式。 -
2、生成模块 带有参数 --force
默认文件存在,会提示是否被覆盖,添加上
--force
参数后将自动覆盖,请谨慎选择。 -
3、生成指定的文件,使用
--only
指定。--only
允许的类型是:controller
、manager
、service
、model
、route
其他格式不被允许如果文件存在,会提示是否覆盖文件。
-
4、删除模块
注:删除不可恢复、删除时不会清除路由,请手动删除
5、curd接口测试
-
1、新增接口
/api/goods/add
返回结果
-
2、列表查询接口
/api/goods/getList
-
3、更新接口
/api/goods/update
-
4、查询单个数据
/api/goods/getOne
- 5、删除
/api/goods/del
以上方法均为post请求。
6、其他帮助文档,请移步 ....