数据如何:{}或Ajax中的任何工作?

时间:2014-08-01 04:52:59

标签: ajax

function Autobuy(id, price){
    $.ajax({
        type: "GET",
        url: "http://m.roblox.com/Catalog/VerifyPurchase?assetid=" + id + "&type=robux&expectedPrice=" + price,
        success: function(Data){
            var link = "http://m.roblox.com/Catalog/VerifyPurchase?assetid=" + id + "&type=robux&expectedPrice=" + price
            var Regex = /__RequestVerificationToken" type="hidden" value="(.+)" \/>/
            var Verify = Data.match(Regex)[1]
            $.ajax({
                type: "POST",
                url: "http://m.roblox.com/Catalog/ProcessPurchase",
                data: //idk what to do here to prevent internal 500 serv error
                __RequestVerificationToken: Verify,
                CurrencyType: 1,
                AssetID: id,
                ExpectedPrice: price
            });
        }
    });
};

如何使用数据:使用$ .ajax({})? 如果我不使用数据:那么它给我的功能错误。

1 个答案:

答案 0 :(得分:0)

它是GET请求的结果,实际上它包含服务器从中返回的任何内容(整数,字符串,数组......),如果没有错误(' s)为什么它在success:)中作为参数传递。