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 模板中定义了一个隐藏字段,其值是从上下文中的视图传递的
<input type="hidden" value={{name}}></input>
我注意到一个奇怪的问题。如果上下文中的值是像“John Doe”这样的多字串,那么输入框是
<input type="hidden" value="John" doe></input>
这背后的原因是什么?如何解决?
谢谢你
你忘记了它周围的引号。