// 参考文档: https://doc.dcloud.net.cn/uni-app-x/uts/buildin-object-api/utsjsonobject.html#getstring-key-def-string
// getString(key, def): string 获取一个string属性,返回类型是string
// 对象 jsonObject
const jsonObject: UTSJSONObject = {
"name": "uniapp",
"type": "framework"
};
let name = jsonObject.getString('name', 'defaultName');
console.log(name); // 输出: uniapp
let undefinedKey = jsonObject.getString('undefinedKey', 'defaultValue');
console.log(undefinedKey); // 输出: null
//想要的输出是:defaultValue
// 需要什么配置或引入插件吗?
项目: uni-app x + vue3
HBuilderX: 4.29
运行到浏览器
3 个回复
DCloud_Android_DQQ
我这测试没发现问题。
trim363 (作者) - 咸鱼363
我这边是运行到web,刚试了一下,还是一样的
trim363 (作者) - 咸鱼363
请问是不是 这里选择得 不对?