我正在从Windows移动应用程序中的代码调用javascript。 我正在使用Windows Phone SDK 8.0和Visual Studio 2012进行开发。
我在调用
时得到以下isuuewbInnerContent.InvokeScript('scriptName', new String[] { jsonval });
{System.SystemException:发生了未知错误。错误: 80020101.在Microsoft.Phone.Controls.NativeMethods.ValidateHResult(Int32 hr)at at Microsoft.Phone.Controls.WebBrowserInterop.InvokeScript(字符串 scriptName,String [] args)at Microsoft.Phone.Controls.WebBrowser.InvokeScript(String scriptName, String [] args)at OneVoiceAfrica.Header.d__16.MoveNext()}
我是移动应用程序开发的新手。 请帮助我解决这个问题。
提前致谢。
答案 0 :(得分:0)
确保IsScriptingEnabled
为真,可能由于Loaded event
过早被调用而导致问题。
webBrowser.IsScriptEnabled = true;