解决Google Chrome扩展程序中的相对路径问题

时间:2012-02-28 15:31:37

标签: google-chrome-extension relative-path

在我的Google Chrome扩展程序中,我正在尝试使用jQuery执行AJAX请求。这是我使用的代码:

//send data to the server
$.ajax({
    type: "PUT",
    url: "/addTransaction",
    data: receivedData,
    success: function(data){
        console.log(data);
    }
});

我遇到的问题是Chrome会尝试访问类似chrome-extension://jeelhjnbimpcilllldencicbafjdgdon/addTransaction的内容,这当然会出错。我不想放置绝对路径,因为它会重置服务器中的会话(node.js)。

关于如何解决这个问题的任何线索?感谢。

0 个答案:

没有答案