এক্সপোর্ট ফাংশনটি টেমপ্লেট লাইব্রেরির একটি ইন্টারফেস ফাংশন, এবং এটি টেমপ্লেট লাইব্রেরির সাথে সম্পর্কিত কৌশল দ্বারা কল করা যেতে পারে।
/*
-- 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");
}
টেমপ্লেট লাইব্রেরি বিভিন্ন প্রোগ্রামিং ভাষার জন্য একটি ভিন্ন বিন্যাসে লেখা হয়। টেমপ্লেট লাইব্রেরিতে ঘোষিত এবং বাস্তবায়িত ফাংশন এক্সপোর্ট করার জন্য একটি উদাহরণ কোড নিম্নরূপঃ
দ্যBlockly Visualization
কৌশল ব্যবহার লাইব্রেরি কার্যকারিতা একটি টেমপ্লেট ক্লাস লাইব্রেরি লেখা দ্বারা বাস্তবায়িত করা যেতে পারেJavaScript
নিম্নলিখিত লেখার ফর্ম্যাট ব্যবহার করে লিখিত।
/*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
}
*/
কৌশল কাঠামো এবং API ফাংশন
টেমপ্লেট লাইব্রেরির পরামিতি