如何将jQuery $ .get存储到类变量行业或产品中?
如果你查看从$ .get调用返回到php文件的数据,那么它确实会返回一个jSon数组,是的我可以使用这些信息,但是对我来说更重要的是存储返回的内容。类Profile的全局变量。
Profile=new Profile("kazie.php");
Profile.getProfile(0123, 'Kayla', 'kayla@email.com');
var Profile = function(php_file){
this.php_file=php_file;
this.serial;
this.industry;
this.product;
//Also need to access scope as well
};
Profile.prototype={
getProfile:function(serial, name, email){
$.get(this.php_file,{action: "retrieve_profile", serial: serial, name: name, email: email},
function (data){ //Return a json array of our new profile
//Data is an array of properties. array("industry"=>"Retail");
//I need to assign these properties to my global variables for
//***How to I get data["industry"] to store in Profile.industry?**
}, "json"
);
}
}
答案 0 :(得分:0)
.getJSON函数的文档将为您提供有关如何处理返回的JSON的一些想法(请注意,您不需要切换到此函数,它们是等效的,因为您指定了“json” “,。getJSON是一种方便的方法。它解释得比我好。
答案 1 :(得分:0)
试试这个:
...
function (data){
Profile.prototype.industry = data.industry
}, "json"
);
...
这应该将行业存储到您班级的原型中。如果您不想将其存储到原型中(这将使其在所有实例中都可用),那么您只需要将它存储在您需要的实例中。