2017-04-11 93 views
0

尝试使用我需要添加到仪表板的数据选取数据文件。每当我添加这段代码时,整个JavaScript文件就会杀死我的django服务器。数据文件存在。我试图在函数之外添加此代码,并尝试使用它,并获得相同的结果。添加javascript代码以从python django仪表板获取数据

/* global $, Dashboard */ 

var dashboard = new Dashboard(); 

dashboard.addWidget('clock_widget', 'Clock'); 

dashboard.addWidget('current_valuation_widget', 'Number', { 
    var request = new XMLHttpRequest(); 
    request.open('GET', 'text.txt'); 
    request.onreadystatechange = function() { 
    if (request.readyState === 4) { 
     var textfileContent = request.responseText; 
     // continue your program flow here 
    } 
} 
request.send(); 

    getData: function() { 
     $.extend(this.scope, { 
      title: 'Current Valuation', 
      moreInfo: 'In billions', 
      updatedAt: 'Last updated at 14:10', 
      detail: '64%', 
      value: '$35', 
      icon: 'fa fa-arrow-up', 
      dept: 'POIT' 
     }); 
    } 
}); 

dashboard.addWidget('buzzwords_widget', 'List', { 
    getData: function() { 
     $.extend(this.scope, { 
      title: 'Buzzwords', 
      moreInfo: '# of times said around the office', 
      updatedAt: 'Last updated at 18:58', 
      data: [{label: 'Exit strategy', value: 24}, 
        {label: 'Web 2.0', value: 12}, 
        {label: 'Turn-key', value: 2}, 
        {label: 'Enterprise', value: 12}, 
        {label: 'Pivoting', value: 3}, 
        {label: 'Leverage', value: 10}, 
        {label: 'Streamlininess', value: 4}, 
        {label: 'Paradigm shift', value: 6}, 
        {label: 'Synergy', value: 7}] 
     }); 
    } 
}); 

dashboard.addWidget('convergence_widget', 'Graph', { 
    getData: function() { 
     $.extend(this.scope, { 
      title: 'Convergence', 
      value: '41', 
      moreInfo: '', 
      data: [ 
        { x: 0, y: 40 }, 
        { x: 1, y: 49 }, 
        { x: 2, y: 38 }, 
        { x: 3, y: 30 }, 
        { x: 4, y: 32 } 
       ] 
      }); 
    } 
}); 

dashboard.addWidget('completion_widget', 'Knob', { 
    getData: function() { 
     $.extend(this.scope, { 
      title: 'Completion', 
      updatedAt: 'Last updated at 14:10', 
      detail: 'today 10', 
      value: '35', 
      data: { 
       angleArc: 250, 
       angleOffset: -125, 
       displayInput: true, 
       displayPrevious: true, 
       step: 1, 
       min: 1, 
       max: 99, 
       readOnly: true, 
       format: function(value) { return value + '%'; } 
      } 
     }); 
    } 
}); 
+0

你从Django得到什么错误或日志信息? – Algorithmatic

+0

在'current_valuation_widget'行至少有一个语法错误。我可能会考虑进一步研究它,如果你修复你的缩进..我猜这会杀死你的浏览器呈现,并且与Django无关。 – thebjorn

回答

0

仪表板有一个API内置。我只是用curl推它。

相关问题