0

我试图简单地调用像“comment/comment_id/promote_to_front”这样的 URL。我怎么做?我尝试了类似以下的方法,但没有成功(这会促进静态 id:13):

$.ajax({
  type : 'GET',
  url : 'comment/13/promote_to_front',
});

我不想操纵任何返回的数据。只需尝试调用 url。

4

2 回答 2

2

有时你必须传递其他细节,这只是一个猜测。如果您可以显示服务器端代码,那么我们可以得出一些结论,但无论如何,这里还有一些您应该尝试的其他事情:

$.ajax({
        type: "POST",
        url: <your url>,
        data: <if any>,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg, textStatus, XMLHTTPRequest) {
           //Some Code
        },
        error: function (XMLHTTPRequest, textStatus, errorThrown) {
            //Some handler
        },
        cache: false
    });

它有很多额外的东西,你甚至不想要,只需尝试一一添加选项。

于 2013-10-18T13:01:38.687 回答
1

添加回调函数以获取数据。

$.ajax({
    url: "comment/13/promote_to_front"
}).done(function(data) {
   //DO stuff with you data.
});

http://api.jquery.com/jQuery.ajax/

于 2013-10-18T13:02:01.987 回答