您好,当我在该范围内创建一个函数时,在该函数外部将看不到它。有没有另一种方法可以调用resettimeline函数而不将其置于本地范围之外?我还需要调用ganttChart(config)函数中的许多其他函数,并且无法仅通过调用而将它们移出此函数。
index.html
<!DOCTYPE html>
<html>
<head>
<title>Gantt Chart</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="chart" id="Chart" style="width: 100%"></div>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script type="text/javascript" src="ganttChart.js"></script>
<script type="text/javascript" src="app.js"></script>
<a id="myButton" href="javascript:void(0);" onclick="resettimeline()" >Click here</a>
<br/>
<a href="javascript:updateData()" >Update</a>
</body>
</html>
app.js
var data = [
{
id: 1,
title: "Request received",
action: 'from',
user: 'SAS',
start_date: "08/08/2016",
end_date: "10/08/2016",
value: 67,
// term: "Short Term",
completion_percentage: 29,
color: "#770051",
}
];
ganttChart(config);
ganttChart.js
function ganttChart(config) {
.
.
.
.
function resettimeline() {
document.location.reload();
};
}
答案 0 :(得分:3)
尽管您的问题尚不完全清楚,但这听起来像Revealing Module Pattern的工作,这是控制Scope的一种常用方法。
原理是采用Immediately Invoked Function Expression(IIFE),它仅在外部作用域中公开您需要的功能部分。
下面的伪代码描述了原理...
/* a function calls itself */
var invokedFunction = (function() {
/* scoped (private) variables */
var someValue = 20;
var someOtherValue = 0;
/* scoped (private) method */
function _someMethod1() {
return someValue + someOtherValue;
}
/* scoped (public) method */
function someMethod2(num) {
/* some action or process */
someOtherValue += num || 1;
/* return private method1 */
return _someMethod1();
}
/* expose public method2 */
return {
method: someMethod2
};
}());
console.log( invokedFunction.method() ); // => 21
console.log( invokedFunction.method(4) ); // => 25
invokedFunction()
的所有工作方式都不受损害,而someMethod2
函数除外,该功能通过invokedFunction
的返回值公开。
进一步的解释可以在这里找到:
希望有帮助:)
答案 1 :(得分:2)
let gc = gantChart(config);
gc.resettimeline(); // weeeee a loop!
.
.
function gantChart(config)
{
.
.
.
return {resettimeline: resettimeline, gotonext: gotonext };
}
只需将您要公开的所有功能添加到{}中,例如我对resettimeline所做的操作