暫時獲知有兩種方式可以為表單設(shè)置初始值
方法一:
在template 文件中賦值
{{ form.author(value='123') }}
方法二:
在視圖handler 處理中賦值
form.author.data = '123'
暫時獲知有兩種方式可以為表單設(shè)置初始值
方法一:
在template 文件中賦值
{{ form.author(value='123') }}
方法二:
在視圖handler 處理中賦值
form.author.data = '123'