jQuery $.get を取得して json データをクラス変数の業界または製品に保存するにはどうすればよいですか?
php ファイルへの $.get 呼び出しから返されたデータを見ると、jSon 配列が返され、その情報を使用することもできますが、返されたものをグローバル変数に格納することがより重要です。クラスのプロフィール。
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"
);
}
}