zoukankan      html  css  js  c++  java
  • 利用IronJs在.NET程序里面跑javascript脚本

    what’s dlr

    The dynamic language runtime (DLR) is a runtime environment that adds a set of services for dynamic languages to the common language runtime (CLR). The DLR makes it easier to develop dynamic languages to run on the .NET Framework and to add dynamic features to statically typed languages.

    Dynamic languages can identify the type of an object at run time, whereas in statically typed languages such as C# and Visual Basic (when you use Option Explicit On) you must specify object types at design time. Examples of dynamic languages are Lisp, Smalltalk, JavaScript, PHP, Ruby, Python, ColdFusion, Lua, Cobra, and Groovy.

    这么一堆洋文摆着,也懒的翻译了。说直接一点就是DLR使得.NET有了可以执行脚本语言的能力(也许描述的不太精准,不过你可以这么理解)。

    why use IronJs

    基于DLR微软自己开了两套类库来跑python跟ruby。不过我想javascript的通用性更强,做程序员的,不过100%也得有90%写过javascript吧。

    what problem can be solved

    那么这种能力有什么好处呢。我能想到的就是对于系统中一些经常需要变更的逻辑,比如折扣算法,积分,以及各种规则,我们可以提到脚本里去写。这样不用任何编译,ctrl+s一下就可以解决问题了。

    this is demo:

    code:

                var jsContext = new IronJS.Hosting.CSharp.Context();
                jsContext.ExecuteFile("myDlr.js");
                var fun = jsContext.GetFunctionAs<Func<double, double, double>>("cacl");
                double a = Double.Parse(this.tbxA.Text);
                double b = Double.Parse(this.tbxB.Text);
                var result = fun.Invoke(a,b);
                this.tbxResult.Text = result.ToString();
     
    js:
     
    var cacl = function (a, b) {
        return a*b;
    };

    image

    当我修改a*b为a-b的时候结果直接就变成-10了。不用关闭程序,不用编译程序,爽。

    image

  • 相关阅读:
    HDOJ2003求绝对值
    HDOJ2002计算球体积
    jsp input 限制只可输入时分秒 My97DatePicker
    BigDecimal格式化
    官方 Animator 例子解析 Animator.MatchTarget
    LoadAssetAtPath 与 Load 的区别
    SQLite 学习流水账笔记
    Unity3D Development模式下的一个小问题
    Sqlitekit 封装管理
    PhotoshopCS4轻松将PSD分层导出为Png分层
  • 原文地址:https://www.cnblogs.com/kklldog/p/3417219.html
Copyright © 2011-2022 走看看