创建和维护电影数据库的最佳方法是什么?

时间:2022-09-15 19:47:37

There are similar questions, but none answers what I really need. I actually don't want to create as long as there is already one ready-made.

有类似的问题,但没有一个回答我真正需要的。只要已经有一个现成的,我实际上不想创造。

If so please guide me on the right direction. This isn't anything big, just to maintain my own collection.

如果是这样,请指导我正确的方向。这不是什么大事,只是为了维护我自己的收藏。

So basically:

  1. Is there a ready-made CMS (or a plugin for a CMS) that does this, even a framework with this kind of web application is good?
  2. 是否有现成的CMS(或CMS的插件),即使是这种Web应用程序的框架也很好?

  3. If not what will be the quickest way to implement one?
  4. 如果不是最快的实施方式是什么?

Thanks for any help.

谢谢你的帮助。

1 个解决方案

#1


  1. Most CMS would be able to maintain a movie database, but i don't think there is any CMS whith this purpose in mind. It all depends an what frameworks and environments you have availible
  2. 大多数CMS都能够维护一个电影数据库,但我认为没有任何CMS有这个目的。这完全取决于您可以使用的框架和环境

2. With ruby on rails setup, do

2.使用ruby on rails设置,执行

rails my_movies
cd my_movies
script/generate scaffold movies title:string rating:integer

#1


  1. Most CMS would be able to maintain a movie database, but i don't think there is any CMS whith this purpose in mind. It all depends an what frameworks and environments you have availible
  2. 大多数CMS都能够维护一个电影数据库,但我认为没有任何CMS有这个目的。这完全取决于您可以使用的框架和环境

2. With ruby on rails setup, do

2.使用ruby on rails设置,执行

rails my_movies
cd my_movies
script/generate scaffold movies title:string rating:integer