zoukankan      html  css  js  c++  java
  • 一文搞定C#.Net如何调用/交互Javascript

    问题

    2020年了网上C#调用Js的方法还是

    1、引用webbrowser控件,简直是刁难我控制台!

    2、引用Interop.MSScriptControl.dll

            private static object ExecuteScript(string argument, string jsCode)
            {
                MSScriptControl.ScriptControl scriptControl = new MSScriptControl.ScriptControl();
                scriptControl.UseSafeSubset = true;
                scriptControl.Language = "JScript";
                scriptControl.AddCode(jsCode);
                try
                {
                    return scriptControl.Eval(argument);
                }
                catch (Exception exception)
                {
                }
                return null;
            }

    但是此程序集已经长久不更新了,JavaScript ES5不支持,从网上下载的版本:

    报错:

    System.Runtime.InteropServices.COMException:“Retrieving the COM class factory for component with CLSID {0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC} failed due to the following error: 80040154 没有注册类 (0x80040154 (REGDB_E_CLASSNOTREG)).”
    

    解决方案

    nuget引入V8.Net:

    将DLL文件拷贝到输出目录:

    c#调用即可:

    c#/Javascript可以互相传递/调用对象

    private readonly static string JsPath = Directory.GetCurrentDirectory() + "/your.js";
    
            public static object ExecuteJavaScript(string cityid, string page)
            {
                string code = File.ReadAllText(JsPath);
                
                V8Engine engine = new V8Engine();
                engine.RunMarshallingTests();
    
                //定义可以在JS中使用的全局变量,string/value
                engine.GlobalObject.SetProperty("cityid_CSObject", cityid);
                engine.GlobalObject.SetProperty("page_CSObject", page);
                
                //js中return object
                string result = engine.ConsoleExecute(code).AsString;
                return result;
            }
  • 相关阅读:
    小知识积累C++使用tinyxml解析Xml内存泄漏问题
    C/C++心得从内存开始
    C/C++心得理解指针
    C/C++心得面向对象
    对于语言的理解
    Lua脚本认知小结
    从敏捷开发到小团队SVN
    如何制作网页小动画?——gif or png
    华为数据之道_简读
    Python_读取文件替换字符
  • 原文地址:https://www.cnblogs.com/Zdelta/p/14122314.html
Copyright © 2011-2022 走看看