当我使用以下代码片段时,我得到一个ScrptEngineException,该对象不支持属性或方法。
var engine = new JScriptEngine();
engine.AddHostType("String", typeof(System.String));
engine.ExecuteCommand("test = 'variabel'; test.StartsWith('nice');");
我已经尝试了其他一些字符串函数,如IndexOf,ToArray(扩展(和其他一些函数,但似乎不起作用。
有人可以帮助我吗?
在您的示例中,test
是一个 JavaScript 字符串,它没有StartsWith
方法。即使它是从 .NET 返回的,为了方便起见,它也会被转换为 JavaScript 字符串。
您可以添加将 JavaScript 字符串转换为 .NET 字符串的方法:
engine.AddHostObject("host", new HostFunctions());
engine.Execute(@"
String.prototype.toHost = function() {
return host.newVar(this.valueOf());
}
");
然后这应该工作:
engine.AddHostType(typeof(Console));
engine.Execute(@"
test = 'variable';
Console.WriteLine(test.toHost().StartsWith('var'));
Console.WriteLine(test.toHost().StartsWith('vaz'));
");
顺便说一句,要小心:
engine.AddHostType("String", typeof(System.String));
这隐藏了内置的JavaScriptString
函数,并且可能会破坏事情。