无法在splunk中使用javascript读取文件数据

时间:2016-08-04 05:54:47

标签: javascript html ajax xml splunk

我正在尝试编写一个javascript程序,该程序从配置文件中读取令牌列表并设置令牌。但是javascript程序无法读取我的本地配置文件。

下面的javascript程序

 require([
    "splunkjs/mvc",
    "splunkjs/mvc/simplexml/ready!"
    ],
        function(mvc) {
        var defaultTokenModel = splunkjs.mvc.Components.getInstance("default");
        alert("start");
        var xhttp = new XMLHttpRequest();
        xhttp.onreadystatechange = function() {
            if (xhttp.status == 200) {
                var allText = xhttp.responseText;
                alert('Text = ' + allText)
            }
        };
        xhttp.open("GET", "rejected_panels.conf", true);
        xhttp.send();
        alert("end");

        defaultTokenModel.set('home_panel_1', 'yes');
});

我从splunk的简单xml访问javascript,如下所示

 <form script="rejected_panels.js">
    ....
    ....
 </form>

我在Chrome浏览器中遇到此错误

rejected_panels.js:21 GET http://localhost:8000/en-GB/app/multi_tOP/rejected_panels.conf 404

请帮助我。

0 个答案:

没有答案