mirror of
https://github.com/langgenius/dify-docs.git
synced 2026-03-27 13:28:32 +07:00
@@ -190,6 +190,8 @@ The data type of the target variable determines its operation method. Below are
|
||||
• **Append**: Add a new element to the array in the target variable.
|
||||
|
||||
• **Extend**: Add a new array to the target variable, effectively adding multiple elements at once.
|
||||
|
||||
• **Remove**: Remove an element from the array, with options to remove from the first position (First) or the last position (Last), with the default being “First”.
|
||||
|
||||
{/*
|
||||
Contributing Section
|
||||
|
||||
@@ -164,9 +164,10 @@ def main(arg1: list) -> str:
|
||||
|
||||
**書き込みモード:**
|
||||
|
||||
* Overwrite (上書き): ソース変数の内容を対象の会話変数に上書きします
|
||||
* Overwrite (上書き):ソース変数の内容を対象の会話変数に上書きします
|
||||
* Append (追加):指定された変数が配列型の場合に使用します
|
||||
* Clear (クリア): 対象の会話変数内の内容をクリアします
|
||||
* Clear (クリア):対象の会話変数内の内容をクリアします
|
||||
* Remove(削除):配列から要素を削除します。先頭から削除(First)または末尾から削除(Last)を選択できます。デフォルトは「先頭から削除」です
|
||||
|
||||
{/*
|
||||
Contributing Section
|
||||
|
||||
@@ -190,6 +190,7 @@ def main(arg1: list) -> str:
|
||||
* **清空**,清空所选中变量中的内容
|
||||
* **追加**,在目标的数组变量中添加一个新的元素
|
||||
* **扩展**,在目标的数组变量中添加新的数组,即一次性添加多个元素
|
||||
* **移除**,从数组中移除元素,可选择从头部移除(First)或尾部移除(Last),默认为“头部移除”
|
||||
|
||||
{/*
|
||||
Contributing Section
|
||||
|
||||
Reference in New Issue
Block a user