Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 django 表单域渲染为 ModelChoiceField 并使用查询集填充它。但是,除了查询集的默认值之外,我希望用户能够从中选择一个,编辑它(例如添加更多的单词)并将新的编辑值保存在数据库中。这怎么可能?到目前为止,我只设法做一个下拉列表和一个替代组合框,但它们都没有实现所描述的功能。有任何想法吗?
这在 Django 的默认情况下是不可能的。我建议根据数据库中的值在模板中手动呈现下拉菜单,然后使用像这样的 jQuery 插件:
http://coffeescripter.com/code/editable-select/