在jQuery Mobile的changePage中指定内容类型?

时间:2012-08-13 14:54:23

标签: jquery ajax jquery-mobile

我正在尝试在changePage中指定contentType,但它无法正常工作。这就是我试过的:

    $.mobile.changePage('/Detail', {
        type: 'POST',
        contentType: 'application/json',
        cache: false,
        data: JSON.stringify({
            item: marker.item
        })
    });

这可能吗?我认为它会覆盖常规的jQuery ajax,但它似乎并非如此。

1 个答案:

答案 0 :(得分:0)

如果要覆盖默认选项,则必须将选项作为第二个参数传递给changePage函数。目前,您在第一个参数后关闭了括号,因此您的选项不会作为参数传递给函数。但是,这样做仍然无法按预期工作,因为contentType方法中未使用$.mobile.changePage()选项。请检查http://jquerymobile.com/test/docs/api/methods.html以获取有效选项。