views:

75

answers:

3

I've been trying to create a dynamically named JSON property but I keep hitting on errors. Honestly I don't know if this is possible to achieve with Javascript. Anyway here is my problem.

Let's suppose I'm creating a JSON object like the following code:
var DTO = { 'NewObject' : GetFormData() };
var DTO = { 'UpdateObject' : GetFormData() };
var DTO = { 'DelObject' : GetFormData() };

Now what I've been trying to do is to dynamically name the JSON property because with something like 'New' + ClassName (ClassName been a var with a string value) but it gives me a syntax error. Is there a way to do this to become something like:
var DTO = { 'New' + ClassName : GetFormData() };
var DTO = { 'Update' + ClassName : GetFormData() };
var DTO = { 'Delete' + ClassName : GetFormData() };

I really appreciate your help. Thanks.

A: 

This is just "an object". JSON is a serialization to a string, not an object type.

If you want to use a variable as a property name, then you must create an object first, then assign the data using square bracket notation.

var foo = {};
var bar = 'baz';
foo[bar] = '123';
alert(foo.baz);
David Dorward
Thanks for the answer.
Helton Valentini
+1  A: 
var DTO = Object();
DTO['New' + ClassName] = GetFormData();
Ignacio Vazquez-Abrams
Thanks for the answer
Helton Valentini
A: 

Would this suit your needs ?

var DTO = {}; DTO['New' + ClassName] = GetFormData();
streetpc
Thanks for the answer.
Helton Valentini
You're welcome.
streetpc