91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

magic-api如何支持posgresql的jsonb數據

發布時間:2021-07-10 10:46:39 來源:億速云 閱讀:181 作者:chen 欄目:編程語言

本篇內容介紹了“magic-api如何支持posgresql的jsonb數據”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

#magic-api#

定義表:

CREATE TABLE public.tb_form_schema (
	id int8 NOT NULL,
	"name" varchar(50) NULL,
	form_schema jsonb NULL,
	CONSTRAINT tb_form_schema_pk PRIMARY KEY (id)
);

magic-api 將接口等信息存儲到數據庫的表 

CREATE TABLE public.magic_api_file (
	file_path varchar(100) NULL,
	id int8 NOT NULL DEFAULT nextval('tb_ba_id_seq'::regclass),
	file_content text NULL,
	CONSTRAINT magic_api_file_pk PRIMARY KEY (id)
);

有兩種方案:

方案 1、創建function類:

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.postgresql.util.PGobject;
import org.springframework.stereotype.Component;
import org.ssssssss.magicapi.config.MagicFunction;
import org.ssssssss.script.annotation.Comment;
import org.ssssssss.script.annotation.Function;
@Slf4j
@Component
public class JsonFunction implements MagicFunction {
    @Function
    @Comment("將jsonp數據轉為JSONObject")
    public JSONObject toJson(PGobject p){
        log.info("數據:{}",p);

        if(p==null){
            return null;
        }
        if(StringUtils.isEmpty(p.getValue())){
            return null;
        }
        switch (p.getType().toLowerCase()){
            case "json":
            case "jsonb":
                return JSON.parseObject(p.getValue());
        }
        return null;
    }
}

方案 2 、定義函數:

magic-api如何支持posgresql的jsonb數據

import "com.alibaba.fastjson.JSON" as JSON;
import "org.apache.commons.lang3.StringUtils" as StringUtils;
if(v==null){
    return null
}
if(StringUtils.isEmpty(v.getValue())){
    return null
}
var vt=v.getType()
if(vt =="jsonb"){
    return JSON.parseObject(v.getValue())
}
return v

調用:

magic-api如何支持posgresql的jsonb數據

import "@/conver/toJSON" as toJSON
var list=
select t.id,t.formSchema from 
(db.camel().select("select * from magic_api_file")) b 
left join 
(
 db.hyLowCode.camel().select("select * from tb_form_schema")
) t
on t.id = b.id where t.id=b.id
return list.each(it=>it.formSchema=toJSON(it.formSchema))

運行結果:

{
    "code": 1,
    "message": "success",
    "data": [
        {
            "id": 3,
            "formSchema": null
        },
        {
            "id": 2,
            "formSchema": {
                "sdf": "sdf"
            }
        }
    ],
    "timestamp": 1618298030334,
    "executeTime": 41
}

“magic-api如何支持posgresql的jsonb數據”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙游县| 宜阳县| 新竹县| 沈丘县| 九江市| 新沂市| 肃北| 吉安市| 金寨县| 牙克石市| 嵩明县| 江源县| 沙坪坝区| 佛山市| 盘锦市| 乐昌市| 高雄县| 土默特右旗| 中江县| 阿拉善盟| 罗源县| 陆良县| 隆林| 南陵县| 乾安县| 乌拉特中旗| 嘉荫县| 凤凰县| 电白县| 汤原县| 双鸭山市| 财经| 莎车县| 乐平市| 敖汉旗| 成安县| 乐至县| 寻乌县| 夏河县| 桐城市| 咸阳市|