最初の関数で引数としてJSONオブジェクトを渡し、次に同じJSONオブジェクトを最初の関数から2番目の関数に渡すことは可能ですか?最初に抽出してから、2番目の関数に渡す前に文字列化する必要がありますか?
ありがとう
たとえば、次のJSONオブジェクトがあります
var client=[{"clientID":"1234",
"businessName":"ABC Corporation",
"legalName":"DCF Inc.",
"clientName":"John"}];
このクライアントJSONオブジェクトを最初の関数に渡します。
function saveClient(clients){
// inside this function, I want to pass this whole Client object into the
// second function
function showClient(clients){
// so inside this function, I can parse this Client object to get the
// string and value
var clientID=client.clientID;
var businessName=client.businessName;
.....
.....
}
}