具有可编辑区域类的 CMS
我见过许多内容管理系统,允许用户通过在类中定义“可编辑”来定义可编辑的内容。我基本上想知道这是如何与使用 PHP 和 MYSQL 的 CMS 一起工作的。我在想也许 Jquery 会扫描 DOM 来查找指定的类,并在该 div 中放置一些代码。有人可以为我指出正确的方向吗,因为我想升级我的 CMS 以使用此方法。
I have seen many Content Management Systems that allow users to define what is editable by defining "editable" in the class. I was basically wondering how this works with a CMS using PHP and MYSQL. I was thinking maybe Jquery scans the DOM for the specified class and places some code inside that div. Can someone point me in the right direction as I am wanting to upgrade my CMS to work with this method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你已经明白它的作用了。提示一些可以在 DOM 内部编辑的元素,使用 javascript 扩展提示元素以添加编辑功能。需要使用 AJAX 将更改触发到 PHP 后端,该后端将更改存储到数据库中。下次从服务器完全请求页面时,这些区域将包含存储在数据库中的数据。
I think you already get it pretty much as it works. Hint some elements that can be edited inside the DOM, extend hinted elements with javascript to add the editing capabilities. Changes need to be fired with AJAX to the PHP backend which stores the changes into the DB. Next time the page is fully requested from server, those regions contain the data stored in the DB.