c#WPF带有Highchart的Web浏览器,来自外部源的Javascript无法正常工作“此页面上的脚本出现错误”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#WPF带有Highchart的Web浏览器,来自外部源的Javascript无法正常工作“此页面上的脚本出现错误”相关的知识,希望对你有一定的参考价值。

我试图找出为什么我的图表没有出现在我的WPF WebBrowser中。当我加载我的html文件时,我有以下错误:

enter image description here

我认为IE可能会阻止WPF WebBrowser中的Highchart(来自外部源的javascript),因为当我尝试使用IE加载它时,我的页面被限制运行脚本或ActiveX控件:

enter image description here

我知道how允许IE运行脚本或ActiveX控件但我不知道如何在我的WPF WebBrowser中允许它。

我试过用Mark Of The Web,但我不确定我是否正确使用它?

<!-- saved from url=(0016)http://localhost -->

我也尝试过一些绝望的方法,例如添加我的程序:

HKEY_CURRENT_USER Software Microsoft Internet Explorer Main FeatureControl FEATURE_BROWSER_EMULATION MyProgram.exe和MyProgram.vshost.exe,其值为0x00002af9

我真的很感激一些帮助。

I don't have find any answer that fix this problem so far.

我的html文件:

<!DOCTYPE HTML>
<!-- saved from url=(0016)http://localhost -->
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Highcharts Example</title>
    <style type="text/css">
    </style>
</head>
<body>
    <script src="https://code.highcharts.com/highcharts.src.js"></script>
    <script src="https://code.highcharts.com/modules/exporting.js"></script>
    <div id="container" style="min-width: 310px; height: 400px; max-width: 600px; margin: 0 auto"></div>

    <script type="text/javascript">
        Highcharts.chart('container', {
            chart: {
                type: 'spline',
                inverted: true
            },
            title: {
                text: 'Atmosphere Temperature by Altitude'
            },
            subtitle: {
                text: 'According to the Standard Atmosphere Model'
            },
            xAxis: {
                reversed: false,
                title: {
                    enabled: true,
                    text: 'Altitude'
                },
                labels: {
                    formatter: function () {
                        return this.value + 'km';
                    }
                },
                maxPadding: 0.05,
                showLastLabel: true
            },
            yAxis: {
                title: {
                    text: 'Temperature'
                },
                labels: {
                    formatter: function () {
                        return this.value + '°';
                    }
                },
                lineWidth: 2
            },
            legend: {
                enabled: false
            },
            tooltip: {
                headerFormat: '<b>{series.name}</b><br/>',
                pointFormat: '{point.x} km: {point.y}°C'
            },
            plotOptions: {
                spline: {
                    marker: {
                        enable: false
                    }
                }
            },
            series: [{
                name: 'Temperature',
                data: [[0, 15], [10, -50], [20, -56.5], [30, -46.5], [40, -22.1],
                    [50, -2.5], [60, -27.7], [70, -55.7], [80, -76.5]]
            }]
        });
    </script>
</body>
</html>

UPDATE

请求:alert(navigator.userAgent);

结果:

enter image description here

Signification


我的PC安全配置没有任何变化我通过在我的html文件的标题中添加这个来解决这个问题:

<meta http-equiv="x-ua-compatible" content="IE=11"> 

有关更多信息,请参阅Alexander Ryan Baggett答案或此link

答案

好的,这对我来说很好。

我添加了<meta http-equiv="x-ua-compatible" content="IE=11">。我还在Visual Studio中将HTML文件添加到项目中并将其设置为copy always。我最终还是不得不在我的机器上进行任何注册表调整。

C#文件

        using System;
        using System.IO;
        using System.Windows;

        namespace Stackoverflow_question
        {
            public partial class MainWindow : Window
            {
                public MainWindow()
                {
                    InitializeComponent();
                    string curDir = Directory.GetCurrentDirectory();
                    webbrowser1.Navigate(new Uri(String.Format("file:///{0}/test.html", curDir))) ;
                }
            }
        }

HTML文件

        <!DOCTYPE HTML>
        <!-- saved from url=(0016)http://localhost -->
        <html>
        <head>
            <meta http-equiv="x-ua-compatible" content="IE=11">
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <title>Highcharts Example</title>
            <style type="text/css">
            </style>
        </head>
        <body>
            <script src="https://code.highcharts.com/highcharts.src.js"></script>
            <script src="https://code.highcharts.com/modules/exporting.js"></script>
            <div id="container" style="min-width: 310px; height: 400px; max-width: 600px; margin: 0 auto"></div>

            <script type="text/javascript">
                Highcharts.chart("container", {
                    chart: {
                        type: "spline",
                        inverted: true
                    },
                    title: {
                        text: "Atmosphere Temperature by Altitude"
                    },
                    subtitle: {
                        text: "According to the Standard Atmosphere Model"
                    },
                    xAxis: {
                        reversed: false,
                        title: {
                            enabled: true,
                            text: "Altitude"
                        },
                        labels: {
                            formatter: function () {
                                return this.value + "km";
                            }
                        },
                        maxPadding: 0.05,
                        showLastLabel: true
                    },
                    yAxis: {
                        title: {
                            text: "Temperature"
                        },
                        labels: {
                            formatter: function () {
                                return this.value + "°";
                            }
                        },
                        lineWidth: 2
                    },
                    legend: {
                        enabled: false
                    },
                    tooltip: {
                        headerFormat: "<b>{series.name}</b><br/>",
                        pointFormat: "{point.x} km: {point.y}°C"
                    },
                    plotOptions: {
                        spline: {
                            marker: {
                                enable: false
                            }
                        }
                    },
                    series: [{
                        name: "Temperature",
                        data: [[0, 15], [10, -50], [20, -56.5], [30, -46.5], [40, -22.1],
                            [50, -2.5], [60, -27.7], [70, -55.7], [80, -76.5]]
                    }]
                });
            </script>
        </body>
        </html>

它也给出了一个很好的结果。 enter image description here

如果此代码无法解决您的问题。我怀疑有关您的本地Intranet安全区域设置需要更改的内容。

以上是关于c#WPF带有Highchart的Web浏览器,来自外部源的Javascript无法正常工作“此页面上的脚本出现错误”的主要内容,如果未能解决你的问题,请参考以下文章

是否可以从 WinForm/WPF C# App 与 Web 浏览器进行交互?

带有播放框架的服务器端 highchart

CefSharp.wpf Web 浏览器导航事件 (C# .Net)

mocha 单元测试中的 Highchart 导入错误

InvokeMember("Click") Web 浏览器控件错误 C# WPF

使用xaxis和yaxis的字母标签时的丑陋Highchart