संसाधन लोड हो रहा है... लोड करना...

रणनीति स्थिति पट्टी में इंटरैक्टिव बटन फ़ंक्शन बनाना

लेखक:FMZ~Lydia, बनाया गयाः 2023-07-13 14:14:38, अद्यतनः 2024-01-02 21:29:26

Constructing Interactive Button Functions in the Strategy Status Bar

रणनीति स्थिति पट्टी में इंटरैक्टिव बटन फ़ंक्शन बनाना

एपीआई प्रलेखन में वर्णन

// You can also construct a button in the form, and use GetCommand to receive the contents of the cmd attribute.
var table = {
    type: 'table',
    title: 'position operation',
    cols: ['Column1', 'Column2', 'Action'],
    rows: [
        ['abc', 'def', {'type':'button', 'cmd': 'coverAll', 'name': 'close position'}],
    ]
};
LogStatus('`' + JSON.stringify(table) + '`')
// Or construct a separate button
LogStatus('`' + JSON.stringify({'type':'button', 'cmd': 'coverAll', 'name': 'close position'}) + '`')
// Button styles can be customized (bootstrap's button attributes)
LogStatus('`' + JSON.stringify({'type':'button', 'class': 'btn btn-xs btn-danger', 'cmd': 'coverAll', 'name': 'close position'}) + '`')

एपीआई प्रलेखन से पता चलता है कि रणनीति स्थिति पट्टी में तालिकाओं, स्ट्रिंग्स, छवियों, चार्ट आदि को प्रदर्शित करना एपीआई फ़ंक्शन को कॉल करके पूरा किया जाता हैःLogStatus.

हम एक JSON डेटा का निर्माण करके एक इंटरैक्टिव बटन भी सेट कर सकते हैं।

डेमो स्रोत कोडः

function test1(p) { Log("Calls a custom function with parameters:", p); return p; } function main() { while (true) { var table = { type: 'table', title: 'position operation', cols: ['Column1', 'Column2', 'Action'], rows: [ ['a', '1', { 'type': 'button', // To display a button, you must set the type to button. 'cmd': "CoverAll", // String, sent data, accepted by the GetCommand() function. 'name': 'close position' // The name displayed on the button. }], ['b', '1', { 'type': 'button', 'cmd': 10, // numerical value 'name': 'Send value' }], ['c', '1', { 'type': 'button', 'cmd': _D(), // The function is called for the duration of the strategy run 'name': 'call the function' }], ['d', '1', { 'type': 'button', 'cmd': 'JScode:test1("ceshi")', // String, the JS code to execute. 'name': 'Send JS Code' }] ] }; LogStatus(' + JSON.stringify(table) + `)

    var str_cmd = GetCommand();
    if (str_cmd) {
        Log("Received Interaction Data str_cmd:", "type:", typeof(str_cmd), "value:", str_cmd);
    }

    if (str_cmd && str_cmd.split(':', 2)[0] == "JScode") {          // Determine if there is a message
        var js = str_cmd.split(':', 2)[1];                          // Split the returned message string, limit it to two, and assign the element with index 1 to a variable named js. 
        Log("Execute debugging code:", js);                                     // Output executed code
        try {                                                       // Abnormal detection
            eval(js);                                               // Executes the eval function, which executes the parameters (code) passed in.
        } catch (e) {                                               // throw an exception
            Log("Exception", e);                                    // Output error messages
        }
    }

    Sleep(500);
}

}


Let's run it. The strategy runs as shown:

![Constructing Interactive Button Functions in the Strategy Status Bar](/upload/asset/28d692a53d0c76776636b.png)

We can trigger the interaction by clicking on the buttons in the table on the status bar. We will click on the "Close Position" and "Send Value" buttons in turn.
When we click on the "Close Position" button, the message will be sent as normal:

![Constructing Interactive Button Functions in the Strategy Status Bar](/upload/asset/28d692a53d0c76776636b.png)

![Constructing Interactive Button Functions in the Strategy Status Bar](/upload/asset/28d4338ccfcdaf615af37.png)

लेकिन यह काम नहीं करता है जब आप Send value पर क्लिक करते हैं क्योंकि['cmd': 10, // valueयहाँ 10 है. संख्यात्मक प्रकार नहीं भेजा जा सकता है.

https://www.fmz.com!रणनीति स्थिति पट्टी में इंटरैक्टिव बटन फ़ंक्शन](/अपलोड/संपत्ति/2d8e0f86599f1b82da792544b7b840bc824d4a96.png)

इसे संख्यात्मक मानों के साथ संगत होने के लिए अनुकूलित किया गया है, और मानों की एक स्ट्रिंग लौटाता है।

”`

इसके बाद हम Call Function बटन पर क्लिक करते हैं, परीक्षण करने के लिए फ़ंक्शन को बुलाया जा रहा है _D() फ़ंक्शन है, और _D() फ़ंक्शन वर्तमान समय स्ट्रिंग को वापस करता रहेगा, इसलिए यदि आप यहां फ़ंक्शन कॉल लिखते हैं, तो यह इसे कॉल करता रहेगा।

प्राप्त डेटा लॉग में छापा जाता हैः

Constructing Interactive Button Functions in the Strategy Status Bar

Constructing Interactive Button Functions in the Strategy Status Bar

अंत में, चलो JS कोड भेजें बटन पर क्लिक करें और हम कस्टम फ़ंक्शन है कि हम अपने कोड में परीक्षण करने के लिए इस्तेमाल किया निष्पादित कर सकते हैं।

function test1(p) {
    Log("Calls a custom function with parameters:", p);
    return p;
}

बटन पर क्लिक करेंः

Constructing Interactive Button Functions in the Strategy Status Bar

Constructing Interactive Button Functions in the Strategy Status Bar

आप देख सकते हैं कि लॉग ((Calling custom function with parameters: , p); function test1 में कथन निष्पादित किया गया था.

class: btn btn-xs btn-danger डालने से कोड में शैली बटन की उपस्थिति को बदल देती है।

Constructing Interactive Button Functions in the Strategy Status Bar

शुरू करो और तुरंत अभ्यास करो!


अधिक जानकारी