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.
在夹具(在 yaml 中)中,我设置了一个多行字段:
fields: code: > print(1) print(2) print(3)
然后我试着读它
print(code)
但是它打印出来
print(1) print(2) print(3)
没有换行...
如何在 django 设备中初始化多行字段?
非常感谢!
使用文字样式,由|而不是引入:http >: //michael.f1337.us/2010/03/30/482836205/
|
>