我使用yesod-simple模板创建了一个脚手架。
处理程序Home.hs有以下几行:
-- Define our data that will be used for creating the form.
data FileForm = FileForm
{ fileInfo :: FileInfo
, fileDescription :: Text
}
提交表单后,开发网络服务器会显示:
----------------------------- 11220121616194905281129768369 内容处理:表格数据;名称=" F1&#34 ;;文件名=" testfile的" 内容类型:text / x-haskell
...
----------------------------- 11220121616194905281129768369 内容处理:表格数据;名称=" F2"
...
为什么这些帖子参数会从' fileInfo'到' f1'以及' fileDescription'到' f2'?
现在使用lookupPostParam我需要使用" f1"和" f2"作为参数而不是原始字段名称...