evalUrl

evalUrl(url: String, readerInputs: Dictionary<ReaderInput> = ​{}, inputValues: Dictionary<Any> = ​{}, configuration: RuntimeExecutionConfiguration = ​{}​): EvalSuccess | ExecutionFailure

指定された URL のスクリプトを評価します。

実験的:​ この関数は実験的機能であり、DataWeave の将来のバージョンで変更または削除される場合があります。

パラメーター

名前 説明

url

ファイル実行の名前。

readerInputs

読み取って実行にバインドする入力。

inputValues

実行に直接バインドする入力。

configuration

ランタイム設定。

次の例では、さまざまな入力での ​evalUrl​ の動作を示します。

ソース

%dw 2.0
import * from dw::Runtime
var jsonValue = {
  value: '{"name": "Mariano"}' as Binary {encoding: "UTF-8"},
  encoding: "UTF-8",
  properties: {},
  mimeType: "application/json"
}

var Utils = "fun sum(a,b) = a +b"
output application/json
---
{
  "execute_ok" : evalUrl("classpath://org/mule/weave/v2/engine/runtime_evalUrl/example.dwl", {"payload": jsonValue }),
  "execute_ok_withValue" : evalUrl("classpath://org/mule/weave/v2/engine/runtime_evalUrl/example.dwl", {}, {"payload": {name: "Mariano"}})
}

出力

{
   "execute_ok": {
     "success": true,
     "value": "Mariano",
     "logs": [

     ]
   },
   "execute_ok_withValue": {
     "success": true,
     "value": "Mariano",
     "logs": [

     ]
   }
 }