scrapy爬虫post请求,参数以回车隔开如何爬取

我再爬取一个ashx网页时,它的post请求参数是已回车换行隔开的而不是以'&'符号,我在spider里应该怎么写呢,求赐教
网页是:http://www.lzggzyjy.cn/InfoPage/InfoList.aspx?SiteItem=38

我这样写:
def start_requests(self):
body1={'currentPage':'1','Query':''}
yield FormRequest('http://www.lzggzyjy.cn/ajax/Controls_InfoListControl,App_Web_czrtjgzk.ashx?_method=getCurrentData&_session=rw', headers = {"Content-Type": "text/plain;charset=UTF-8"},callback=self.parse,formdata=body1,method ='POST',cookies= {"ASP.NET_SessionId":"qpzxibfguvi452oujhorwdi5","SERVERID":"0c51fcf27e5a43864444c2a531b3c0e0|1482238131|1482234645"})
报错:new Object();r.error = new ajax_error('System.ArgumentException','类型“System.DBNull”的对象无法转换为类型“System.Int32”。',0)

http://blog.csdn.net/q_an1314/article/details/50748700