يأخذ منشئ المتغير اسم متغير اختياري ومدقّقًا اختياريًا ومصفوفة اختيارية من أنواع المتغيرات ونوعًا تلقائيًا اختياريًا.
يجب أن يكون اسم المتغيّر سلسلة. سيكون هذا هو اسم المتغير الأوّلي الذي يحتوي عليه الحقل. إذا كانت القيمة فارغة أو غير محدّدة، سيتم إنشاء اسم فريد.
يجب أن تكون أنواع المتغيرات مصفوفة من السلاسل. يحدّد هذا الحقل أنواع المتغيّرات التي يمكن أن يتضمّنها الحقل (أي أنواع المتغيّرات التي يجب إضافتها إلى القائمة المنسدلة). إذا كانت القيمة فارغة أو غير محدّدة، سيتم قبول جميع أنواع المتغيرات (وستتم إضافتها إلى القائمة المنسدلة).
يجب أن يكون النوع التلقائي سلسلة. سيتم استخدام هذا الخيار عند إنشاء نموذج المتغيّر الأوّلي للحقل. في حال تحديد هذا الحقل، يجب تضمينه في مصفوفة أنواع المتغيرات. إذا كانت القيمة فارغة أو غير محدّدة، ستكون القيمة التلقائية لهذا المتغيّر سلسلة فارغة، ما يعني أنّ المتغيّر الأوّلي سيكون من النوع المرن.
تحتوي السمة name للعقدة على سلسلة تشير إلى حقل متغير.
تحتوي السمة id للعقدة على معرّف المتغيّر الذي يشير إليه الحقل.
تحتوي السمة variabletype للعقدة على نوع المتغير.
تتّبع variabletype القواعد نفسها المتّبعة في مَعلمة النوع التلقائية للدالة الإنشائية.
النص الداخلي للعقدة هو اسم المتغيّر. تخضع قيمة النص الداخلي للقواعد نفسها التي تخضع لها مَعلمة اسم المتغيّر في الدالة الإنشائية.
إنشاء أداة التحقّق من صحة المتغيّرات
قيمة حقل المتغيّر هي سلسلة، لذا يجب أن تقبل أي أدوات التحقّق سلسلة وأن تعرض سلسلة أو null أو undefined.
في ما يلي مثال على أداة التحقّق التي تقبل بعض المتغيّرات المحدّدة مسبقًا فقط كخيارات. يجب تحديد هذه المتغيرات باستخدام الدالة
Workspace.getVariableMap().createVariable
عند تحميل مساحة العمل.
تاريخ التعديل الأخير: 2025-08-05 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-08-05 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eVariable fields store a variable's ID as its value and the variable's name as its text, enabling blocks to interact with variables.\u003c/p\u003e\n"],["\u003cp\u003eYou can specify the variable's name, type, and validation rules during field creation to control its behavior.\u003c/p\u003e\n"],["\u003cp\u003eVariable fields can be serialized to JSON or XML for saving and loading block configurations.\u003c/p\u003e\n"],["\u003cp\u003eValidators can be used to restrict the variables a field can accept, ensuring data integrity.\u003c/p\u003e\n"],["\u003cp\u003eVariable fields can be pre-populated with specific variable names and types within the toolbox.\u003c/p\u003e\n"]]],[],null,["# Variable fields\n\nA variable field stores a string as its value, and a string as its text. The\nvalue is an ID of a variable, while the text is the name of a variable.\n\n#### Variable field\n\n#### Variable field with editor open\n\n#### Variable field on collapsed block\n\nCreation\n--------\n\n### Untyped\n\n### JSON\n\n {\n \"type\": \"example_variable_untyped\",\n \"message0\": \"variable: %1\",\n \"args0\": [\n {\n \"type\": \"field_variable\",\n \"name\": \"FIELDNAME\",\n \"variable\": \"x\"\n }\n ]\n }\n\n### JavaScript\n\n Blockly.Blocks['example_variable_untyped'] = {\n init: function() {\n this.appendDummyInput()\n .appendField('variable:')\n .appendField(new Blockly.FieldVariable('x'), 'FIELDNAME');\n }\n };\n\n### Typed\n\n### JSON\n\n {\n \"type\": \"example_variable_typed\",\n \"message0\": \"variable: %1\",\n \"args0\": [\n {\n \"type\": \"field_variable\",\n \"name\": \"FIELDNAME\",\n \"variable\": \"x\",\n \"variableTypes\": [\"Number\", \"String\"],\n \"defaultType\": \"Number\"\n }\n ]\n }\n\n### JavaScript\n\n Blockly.Blocks['example_variable_typed'] = {\n init: function() {\n this.appendDummyInput()\n .appendField('variable:')\n .appendField(new Blockly.FieldVariable(\n 'X',\n null,\n ['Number', 'String'],\n 'Number'\n ), 'FIELDNAME');\n }\n };\n\nThe variable constructor takes in an optional variable name, an optional\n[validator](#creating_a_variable_validator), an optional array of variable\ntypes, and an optional default type.\n\n- The **variable name** should be a string. This will be the name of the initial variable the field holds. If it is null or undefined a unique name will be generated.\n- The **variable types** should be an array of strings. This tells the field what types of variables the field can hold (i.e. what types of variables to add to the dropdown). If it is null or undefined, all variable types will be accepted (and added to the dropdown).\n- The **default type** should be a string. This will be used when creating the field's initial variable model. If this is defined, its should be included in the variable types array. If it is null or undefined this value defaults to an empty string, meaning the initial variable will be flexibly typed.\n\n→ For more information on strict typing, see\n[Type Checks](/blockly/guides/create-custom-blocks/type-checks).\n\nSerialization\n-------------\n\n### JSON\n\nThe JSON for a variable field looks like so: \n\n {\n \"fields\": {\n \"FIELDNAME\": {\n \"id\": \"QJD^+@[RVIwbLSZoDb:V\"\n }\n }\n }\n\nWhere `FIELDNAME` is a string referencing a variable field, and\nthe value is the ID of the variable the field references.\n\nIf you are using this field in the toolbox, you can also specify the name\nand (optional) type directly, since there will be no variable available to\nreference. \n\n {\n \"fields\": {\n \"FIELDNAME\": {\n \"name\": \"my_variable\",\n \"type\": \"string\"\n }\n }\n }\n\n### XML\n\nThe XML for a variable field looks like so: \n\n \u003cfield name=\"VARIABLE\" id=\"QJD^+@[RVIwbLSZoDb:V\" variabletype=\"\"\u003ename\u003c/field\u003e\n\n- The node's `name` attribute contains a string referencing a variable field.\n- The node's `id` attribute contains the ID of the variable the field references.\n- The node's `variabletype` attribute contains the type of the variable. The `variabletype` follows the same rules as the constructor's default type parameter.\n- The node's inner text is the name of the variable. The inner text value follows the same rules as the constructor's variable name parameter.\n\nCreating a variable validator\n-----------------------------\n\n| **Note:** For information on validators in general see [Validators](/blockly/guides/create-custom-blocks/fields/validators).\n\nA variable field's value is a string, so any validators must accept a string and\nreturn a string, `null`, or `undefined`.\n\nHere's an example of a validator that only accepts some predefined variables as\noptions. These variables would need to be defined with the\n[`Workspace.getVariableMap().createVariable`](/blockly/reference/js/blockly.ivariablemap_interface.createvariable_1_methodsignature)\nfunction when the workspace is loaded. \n\n function(newValue) {\n var validIds = ['Worf', 'Riker', 'Picard'];\n if (validIds.indexOf(newValue) == -1) {\n return null;\n }\n return newValue;\n }"]]