PHP 框架与 AJAX 脚手架?

发布于 2024-09-08 10:01:06 字数 47 浏览 1 评论 0原文

有人知道有什么 PHP 框架可以使用 AJAX 创建脚手架吗?

Does someone know of any PHP frameworks which can create scaffoldings with AJAX?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

绾颜 2024-09-15 10:01:06

我只能给你一个答案。它是 Yii 框架。在Yii中搭建脚手架后,你将得到使用Ajax进行搜索、排序和分页的数据列表页面。

I only got one answer for you. It is Yii Framework. After you do scaffolding in Yii, you will get data list page that use Ajax for searching, sorting, and paging.

望她远 2024-09-15 10:01:06

我无法想象任何会发生这种情况,尤其是脚手架实际上应该只在开发环境中使用。它们永远不应该作为生产后台推出。 (除非数据真的非常简单。)

I can't imagine that any would, especially as scaffolding should really only be used dev environments. They should never be rolled out as production back offices. (Unless the data is really really simple.)

违心° 2024-09-15 10:01:06

我知道“Vue CRUD”

Vue crud 使用 Vue 前端

前端使用 ajax 技术与后端通信

Vue.js 基于 REST-ful CRUD 系统

后端使用 php laravel

非常简单 代码生成器非常好

https://vue-crud.github.io/

I know "Vue CRUD"

Vue crud use Vue front end

front end comunicate with backend with ajax tecnology

Vue.js based REST-ful CRUD system

Back end use php laravel

Is very easy code generator is very good

https://vue-crud.github.io/

清醇 2024-09-15 10:01:06

仅在ajax中插入/更新/删除 JavaScript feth
但您可以编辑文件夹存根中的自定义文件以添加ajax编辑表单和列表
laravel 10 php 8>

打开终端

composer create-project laravel/laravel example-app    
cd example-app    
composer require luiz0067yahoo/laravel-scaffold-command-1    
php artisan vendor:publish --tag=scaffold-stubs    
php artisan scaffold Category --fields=name:string,slug:string,parent_id:foreignId    
edit connection data base file .env    
php artisan key:generate    
php artisan migrate

链接

https://github.com/luiz0067yahoo/laravel-scaffold-command-1 https://packagist.org/packages/luiz0067yahoo/laravel-脚手架命令-1

insert/update/delete in ajax only JavaScript feth
but custom files in folder stubs you can edit for add ajax edit form and list
laravel 10 php 8>

Open terminal

composer create-project laravel/laravel example-app    
cd example-app    
composer require luiz0067yahoo/laravel-scaffold-command-1    
php artisan vendor:publish --tag=scaffold-stubs    
php artisan scaffold Category --fields=name:string,slug:string,parent_id:foreignId    
edit connection data base file .env    
php artisan key:generate    
php artisan migrate

Links

https://github.com/luiz0067yahoo/laravel-scaffold-command-1 https://packagist.org/packages/luiz0067yahoo/laravel-scaffold-command-1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文