关于动态执⾏代码(js的Eval)实例详解
熟悉javascript的朋友对Eval()函数可能都不会陌⽣,我们可以⽤它来实现动态代码的执⾏,我⾃⼰甚⾄写过⼀个⽹页专门⽤来计算算术表达式的,计算能⼒上⽐google、baidu的计算器还要好⼀些,⾄少精度要⾼,但是如果超出了四则运算的话,表达式的形式会复杂很,⽐如以百度给出的例⼦:
log((5+5)^2)-3+pi需要写成Math.log(Math.pow(5+5,2))*Math.LOG10E-3+Math.PI才能⽤Eval进⾏计算,对于这⼀点我还没有想到理想的解决⽅案。好了,这不是本⽂正题,我们姑且放过。
博客园⾥曾经见⼈⽤过下⾯的代码,⾄少从代码形式上挺简单的:
// noname1.cs /r:C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Microsoft.JScript.dll
//注:需加⼊Microsoft.JScript与Microsoft.Vsa两个命名空间。
public class Class1
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello World");
string Expression = "var result:int =0;result==1?\"成功\":\"失败\"";
Microsoft.JScript.Vsa.VsaEngine ve = Microsoft.JScript.Vsa.VsaEngine.CreateEngine();
Console.WriteLine(Microsoft.JScript.Eval.JScriptEvaluate(Expression, ve));
}
}
不过,令⼈不爽的是,编译环境现在给出如下警告:'Microsoft.JScript.Vsa.VsaEngine' is obsolete: 'Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.'当然,代码可以编译通过,且执⾏是正常的。
下⾯我给出另外⼀种直接使⽤javascript的Eval函数的⽅法,借助于com组件,引⽤路径是
%SystemRoot%\ ,我将完整的代码直接贴出来。
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
namespace ScriptProgramming
{
class Program
{
static void Main(string[] args)
{
string strExpression = "1+2*3";
string strResult = Eval(strExpression);
Console.WriteLine(strExpression + "=" + strResult);
Console.WriteLine("Press any key to continue.");
Console.ReadKey();
}
/// <summary>
/// 引⽤com组件Microsoft Script Control
/// %SystemRoot%\
/// 该函数⽤来动态执⾏代码
/// </summary>
/
// <param name="Expression"></param>
/// <returns></returns>
public static string Eval(string Expression)
{
string strResult = null;
try
{
MSScriptControl.ScriptControlClass jscript = new MSScriptControl.ScriptControlClass();
jscript.Language = "JScript";
strResult = jscript.Eval(Expression).ToString();
}
catch (Exception ex)
{
Debug.Fail(ex.Message);实现特效的代码js
}
return strResult;
}
}
}
以上这篇关于动态执⾏代码(js的Eval)实例详解就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论