1

目前,我有一个用户在 ajax bing 地图上创建了很多点。当用户按下“提交”按钮时,我想获取存储在 map.entities 中的所有位置,我构建了一个 xml 格式的字符串,我想将它保存在我的数据库中:

<locations> <location><lat><lon>1.234</lon></lat></location>.....</locations>

,所以在构建我的 XML 字符串之后,这不是问题,我将它存储在可变位置并执行以下操作:

$. ajax({ 
type: "POST",
url: "myPage.aspx/saveLocations"
data: {"xmlLoc: x"},
async: true,
cache: false,
success: alert ("success" + msg)
error: ....

但不幸的是,这似乎不是传递我的数据的方式。这是我唯一一次成功,但味精是未定义的!!!

如果我写 data: x, <-- 我会遇到的问题是我收到了来自客户端的潜在危险请求

我的服务器端代码:

[Web Method]
public static string saveLocations(string s)
{
    return s; //just for testing purposes
}

我不确定如果我必须使用 json 或其他东西,我是一个初学者,所以我不知道从哪里开始!非常感谢


编辑:我正在尝试另一种解决方法,但我总是得到无效的 json 原始错误!!!

var locations = '{ "location" : [';
function createBoundary() {                        
            for (x = 0; x < map.entities.getLength(); x++) {
                var pin = map.entities.get(x);
                locations += '{ "latitude": "' + pin.getLocation().latitude +'", "longitude": "' + pin.getLocation().longitude + '"},';
            }
locations += ']}';
jQuery.ajax({
                type: "POST",
                url: "Profiles_Schedules.aspx/GetXmlLoc",
                data:  eval("(" + locations + ")"),
                contentType: "application/json;charset=utf-8",
                datatype: "json",
                async: true,
                cache: false,
                success: function (msg) {
                    alert("Success " + msg.d);
                },
                error: function (x, e) {
                    alert("The call to the server side failed. " + x.responseText);
                }
            });
}
4

3 回答 3

2

尝试添加数据类型:

dataType: "json",

另外我认为您的数据应该是“s”而不是“xmlLoc”,因为这就是您在行动中要寻找的。

并尝试更改您的操作:

[HttpPost]
public static string saveLocations(string s)
{
    return s; //just for testing purposes
}
于 2012-04-13T19:40:41.050 回答
1

我不确定接收端,但您的数据未以可识别的格式传递。 jQuery.ajax()对数据格式进行智能猜测,但对您来说最快的转换是 JSON:

data: '{"xmlLoc":"x"}'

正确的 JSON 格式需要引号。

于 2012-04-13T19:45:06.887 回答
1

尝试将您的代码更改为以下内容:

data: {"s":"x"}

即使在 JSON 的网站上,如果您想要字符串到字符串,也必须使用引号格式化您的键/值对。我建议您将密钥命名为与您的参数相同。

根据WebMethod 上的 MSDN,我最初认为这可能无法通过 WebMethodAttribute 工作,因为它使用 SOAP 调用。但是,这个 SO 问题很有趣,因为它指出 JSON 将被格式化为适当的 SOAP 格式。有点好:)

但是,以上确实让我感觉更强烈的是,您的 json 密钥需要匹配您的方法签名的命名才能使序列化工作

于 2012-04-13T20:00:30.613 回答