hubiyun0901 发表于 2023-9-18 16:25:45

Json数据源

使用官网的示例,做JSON数据源,但是数据集查不到

jsonplaceholder.typicode.com/comments/







Eden.Sun 发表于 2023-9-18 17:17:02

您好,您帖子上的地址没有 https://   协议头,
您在浏览器**问一下:
https://jsonplaceholder.typicode.com/comments/
看是不是能有返回数据:


如果有的话,说明网络没问题,可以获取到数据,您创建数据源,保存之后没在创建数据集,就可以了:




hubiyun0901 发表于 2023-9-18 17:33:20

Eden.Sun 发表于 2023-9-18 17:17
您好,您帖子上的地址没有 https://   协议头,
您在浏览器**问一下:
https://jsonplaceholder.typicode ...

有的,网络当然是通的呢

hubiyun0901 发表于 2023-9-18 17:38:38

能远程协助下吗

Bella.Yuan 发表于 2023-9-18 18:17:08

hubiyun0901 发表于 2023-9-18 17:38
能远程协助下吗

您好,看您的截图您使用的应该是代码生成的桌面设计器,我这边使用16版本的进行了测试是正常的,您在仔细检查一下;





或者您根据您的版本再git上下载对应版本的文件,运行一下重新生成对应的exe再测看看。
git地址:https://github.com/activereports/Samples16/tree/main

hubiyun0901 发表于 2023-9-18 23:28:23

Bella.Yuan 发表于 2023-9-18 18:17
您好,看您的截图您使用的应该是代码生成的桌面设计器,我这边使用16版本的进行了测试是正常的,您在仔细 ...

您好,我使用的是13版本的!

Bella.Yuan 发表于 2023-9-19 10:59:40

hubiyun0901 发表于 2023-9-18 23:28
您好,我使用的是13版本的!

您好,我这边找了个13的环境进行了测试,13中需要写schema和内容,我这边找了个例子,您可以参考一下,其次16版本针对json这方面的实现已比较稳定,而且使用很方便,推荐您使用16版本或者官网的最新版本17,这样使用会更方便。
13API链接:https://help.grapecity.com/activereports/webhelp/AR13/webframe.html#JSONProvider.html
官网:https://www.grapecity.com.cn/developer/activereports




schema:
{"$id":"http://example.com/example.json","type":"object","definitions":{},"$schema":"http://json-schema.org/draft-07/schema#","properties":{"Data":{"$id":"/properties/Data","type":"array","items":{"$id":"/properties/Data/items","type":"object","properties":{"CategoryId":{"$id":"/properties/Data/items/properties/CategoryId","type":"integer","title":"The CategoryId Schema","default":0,"examples":},"CategoryName":{"$id":"/properties/Data/items/properties/CategoryName","type":"string","title":"The CategoryName Schema","default":0,"examples":["abc"]},"Description":{"$id":"/properties/Data/items/properties/Description","type":"string","title":"The Description Schema","default":0,"examples":["abc"]},}}}}}内容:
{"Data":[{"CategoryId":1,"CategoryName":"Beverages","Description":"Soft drinks, coffees, teas, beers, and ales"},{"CategoryId":2,"CategoryName":"Condiments","Description":"Sweet and savory sauces, relishes, spreads, and seasonings"},{"CategoryId":3,"CategoryName":"Confections","Description":"Desserts, candies, and sweet breads"},{"CategoryId":4,"CategoryName":"Dairy Products","Description":"Cheeses"},{"CategoryId":5,"CategoryName":"Grains/Cereals","Description":"Breads, crackers, pasta, and cereal"},{"CategoryId":6,"CategoryName":"Meat/Poultry","Description":"Prepared meats"},{"CategoryId":7,"CategoryName":"Produce","Description":"Dried fruit and bean curd"},{"CategoryId":8,"CategoryName":"Seafood","Description":"Seaweed and fish"}]}


页: [1]
查看完整版本: Json数据源