打开/关闭搜索
搜索
打开/关闭菜单
63
134
6
1.6K
骷髅女孩Wiki
导航
首页
alt z
最近更改
alt r
随机页面
alt x
MediaWiki帮助
特殊页面
alt q
上传文件
alt u
可选角色
菲莉亚
赛瑞贝拉
孔雀
帕娜索
幸运猫女
痛苦转轮
瓦伦汀
双形
丝瑰丽
大乐队
伊莱莎
芙库亚
贝奥武夫
机械猫女
安妮
小伞
黑色大丽花
玛丽
系统
操纵方法
游戏界面
数据图例
启动选项
更新日志
机制
移动
进攻
防守
连段
组队
进阶
杂项
常见问题
术语
训练室
词典
通知
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
创建账号
登录
alt o
查看“模块:SteamPrice”的源代码
来自骷髅女孩Wiki
查看
阅读
查看源代码
查看历史
associated-pages
模块
讨论
更多操作
←
模块:SteamPrice
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} -- JSON字符串 -- https://store.steampowered.com/api/appdetails?appids=245170&cc=cn&filters=price_overview data = mw.ext.externaldata.getExternalData { url = "https://store.steampowered.com/api/appdetails?appids=245170&cc=cn&filters=price_overview" , data = "json=__json" } --[[ local json_str = { "245170": { "success": true, "data": { "price_overview": { "currency": "CNY", "initial": 8000, "final": 8000, "discount_percent": 0, "initial_formatted": "", "final_formatted": "¥ 80.00" } } } } ]] --[[ 解析JSON字符串 local data = mw.text.jsonDecode(json_str) ]] -- 提取价格信息 local appid = "245170" local priceOverview = data[appid].data.price_overview function p.discount() return string.format('%d%%', priceOverview.discount_percent) end function p.price() return priceOverview.final_formatted end return p
该页面使用的模板:
模块:SteamPrice/doc
(
查看源代码
)
返回
模块:SteamPrice
。