Tencent/APIJSON

【请教】将查询结果作为远程函数的入参

Closed this issue · 2 comments

Description

{ "result()":"fun()" "Moment": { "id": 12, "@column": "id,name" } }
将name作为fun远程函数的入参,应如何实现?

远程函数要和被引用 key 放同一层级,并且传参调用

{
    "Moment": {
        "id": 12,
        "@column": "id,name",
        "result()": "fun(name)"
    }
}

多谢