2
我試圖設置輸入字段的初始值截斷。在模板中,我有Django的模板:字符串自動得到了由空格輸入值
<input id="title" name="title" value={{ post_title }}>
其中post_title
是一個字符串。奇怪的是,如果post_title
中有一個空格,它將被拆分,只有空白之前的部分纔會被顯示。例如,如果post_title = "hello world"
,呈現的HTML是
<input id="title" name="title" value="hello" world>
一切正常沒有post_title
空格。我正在使用Django 1.3.1和Python 2.6。