Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Many thanks for reading ,

Problem context: Use search function of spry in more than one accordion panel.

I am trying to use eval (since it is the only way I can think of) to accomplish this simple thing:

var ds1 = new Spry.Data.XMLDataSet("ajaxxmllogdaneiz1.php",'root/row]');

var ds2 = new Spry.Data.XMLDataSet("ajaxxmllogdaneiz2.php",'root/row]');

var str1="ds";

var str2= 1;

var result= str1.concat(str2);

//result is now ds1

eval ("result.filter(filterFunc)");

I would like ds1.filter(filterFunc) to be called but result.filter(filterFunc) is called. Is there a way for ds1.filter(filterFunc) to be called with eval or alternatives (Jquery?)? Many thanks Dinos

share|improve this question

3 Answers

up vote 0 down vote accepted

For using the value of result instead of "result" itself, you can do:

eval (result+".filter(filterFunc)");

share|improve this answer
Many thanks . I have tried combinations but I though eval () would not allow string concatanation inside. Many thanks again. – dinos Dec 30 '12 at 8:50
My pleasure. Note that you can pass anything that resolves into a string to eval() - be it a concatenation, a toString() call, a function call that returns a string, one of the string methods that return a string etc. – techfoobar Dec 30 '12 at 9:46

You should be using this:

eval(result + ".filter(filterFunc)");

But you should really consider not evaling at all. I don't see why this would ever be advisable. If you must, I would suggest storing the variable to be operated on in a known place. For example:

​var Foo = function() {
    return {
        "bar": function() {
            console.log("baz");
        }
    }
};

var foo_list = {};
foo_list["foo"] = Foo();

var part_1 = "fo";
var part_2 = "o";

foo_list[part_1 + part_2].bar();

fiddle

(You can also store it in window this way, but I would advise against that, too.)

share|improve this answer
Many thanks for the proposal and the great elaboration on the subject Waleed. – dinos Dec 30 '12 at 8:53

If the variable you're trying to access are in the global scope, then you can use:

var result = 'ds1';

window[result].filter(filterFunc);
share|improve this answer
Many thanks for the proposal Supericy – dinos Dec 30 '12 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.