O recurso está a ser carregado... Carregamento...

Função de exportação da biblioteca de modelos

A função de exportação é uma função de interface da biblioteca de modelos, e pode ser chamada pela estratégia que se refere à biblioteca de modelos.

/*
-- After the strategy references the template, call this method directly with $.Test()
-- The main function is not triggered in the strategy, it is only the entry point for template debugging
*/
$.Test = function() {
    Log('Test')
}

function main() {
    $.Test()
}
def Test():
    Log("template call")

# Export the Test function, the main strategy can be called via ext.Test().
ext.Test = Test 
// After the strategy references the template, call this method directly with ext::Test()
void Test() {
    Log("template call");
}

A biblioteca de modelos é escrita em um formato diferente para diferentes linguagens de programação. Um exemplo de código para exportar funções a serem declaradas na biblioteca de modelos e implementadas é o seguinte: OBlockly VisualizationA função da biblioteca de uso de estratégia pode ser implementada escrevendo uma biblioteca de classe modelo noJavaScriptlinguagem, escrita utilizando o seguinte formato de escrita.

/*blockly
    {
        "type": "ext_testA",
        "message0": "testA|testA",
        "template": "function(){return 99;}()",
        "order": "ORDER_ATOMIC",
        "output": "Number"
    },{
        "type": "ext_MA",
        "message0": "MA 周期 %1| MA Period %1",
        "args0": [{
            "type": "input_value",
            "check": "Number"
        }],
        "template": "(function(){var r = exchange.GetRecords(); return (!r || r.length < %1) ? false : TA.MA(r, %1); })()",
        "order": "ORDER_ATOMIC",
        "output": null,
        "colour": 85
    }
*/
Quadro de estratégia e funções de API Parâmetros da biblioteca do modelo