我有一个.asmx网络服务工作正常,但它没有读取prostdata。它看起来像这样:
namespace mynamespace.liby
{
[ScriptService]
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class json : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public List<sp_tech_keywordSearch_Result> search()
{
const string KEY = "key";
var key = string.Empty;
// convert postdata to dictionary
// this piece of code works fine in my asp.net MVC controller but not here :-(
string data = new StreamReader(HttpContext.Current.Request.InputStream).ReadToEnd();
Dictionary<string, string> postData = JsonConvert.DeserializeObject<Dictionary<string, string>>(data);
if (postData.ContainsKey(KEY)) { key = postData[KEY]; }
var db = new my_Entities();
var result = db.sp_myStoredProcedure(key);
return result.ToList();
}
}
}
如果我注释掉该行
// if (postData.ContainsKey(KEY)) { key = postData[KEY]; }
在没有参数的情况下调用该过程并返回值列表。
但是当我保留这一行时,它会抛出一个错误,说postData
为空。
当我在调试模式下检查它时,我看到data
是一个空字符串。
我用这样的角度来称呼这项服务:
callService: function () {
var postData = new Object();
postData.key =4;
return $http({ method: 'POST', url: MY_SERVICE, data: postData })
.then(function (obj) {
_Result = obj.data.d;
return true;
}, function (err) {
_Result = [];
console.log('serviceError');
return false;
});
},
我的猜测是我的阅读postdata的代码在某种程度上是错误的。我在ASP.NET MVC控制器中运行相同的代码,它在那里工作正常。有没有人知道如何解决这个问题?
答案 0 :(得分:3)
添加此解决了问题
// goto beginning of the inputstream
HttpContext.Current.Request.InputStream.Position = 0;
// convert postdata to dictionary
string data = new StreamReader(HttpContext.Current.Request.InputStream).ReadToEnd();
由于某种原因,输入流的'光标'位于最后一个位置,ReadToEnd()
导致读取空字符串。