我正在尝试完成以下内容:eval() with variables from an object in the scope
正确答案建议使用"使用"关键字,但我找不到任何实际使用"和#34;的人的例子。有人可以解释如何使用"和#34;来传递多个变量。进入" eval"表达式如上面的链接?
答案 0 :(得分:1)
我不建议将与或 eval 一起使用,除非作为学习练习,因为任何一个减慢了代码,并且一次使用它们特别糟糕并且不赞成由较大的社区组织。
但确实有效:
function evalWithVariables(code) {
var scopes=[].slice.call(arguments,1), // an array of all object passed as variables
A=[], // and array of formal parameter names for our temp function
block=scopes.map(function(a,i){ // loop through the passed scope objects
var k="_"+i; // make a formal parameter name with the current position
A[i]=k; // add the formal parameter to the array of formal params
return "with("+k+"){" // return a string that call with on the new formal parameter
}).join(""), // turn all the with statements into one block to sit in front of _code_
bonus=/\breturn/.test(code) ? "": "return "; // if no return, prepend one in
// make a new function with the formal parameter list, the bonus, the orig code, and some with closers
// then apply the dynamic function to the passed data and return the result
return Function(A, block+bonus+code+Array(scopes.length+1).join("}")).apply(this, scopes);
}
evalWithVariables("a+b", {a:7}, {b:5}); // 12
evalWithVariables("(a+b*c) +' :: '+ title ", {a:7}, {b:5}, {c:10}, document);
// == "57 :: javascript - How to pass multiple variables into an "eval" expression using "with"? - Stack Overflow"
编辑使用任意数量的范围来源,注意属性名称冲突。 再一次,我通常不会使用和,但这很有趣......