- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个 JavaScript 函数来读取 JSON 文件,并通过将值与用户输入的字符串进行匹配来检索信息。为了导航 JSON 文件,我使用了 JSPath,但是我不知道如何使用函数在 JSPath 谓词中传递的字符串变量。
这是我目前拥有的代码:
function retrieveCategoryWinners(query) {
var category = query
var jsonDoc = $.getJSON("nobel.json")
var winners = JSPath.apply('.prizes{.category === $query}.laureates', jsonDoc,
{query: category})
JSON 文件的片段:
{
"prizes": [
{
"year": "2017",
"category": "physics",
"laureates": [
{
"id": "941",
"firstname": "Rainer",
"surname": "Weiss",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "2"
},
{
"id": "942",
"firstname": "Barry C.",
"surname": "Barish",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "4"
},
{
"id": "943",
"firstname": "Kip S.",
"surname": "Thorne",
"motivation": "\"for decisive contributions to the LIGO detector and the observation of gravitational waves\"",
"share": "4"
}
]
}
因此,例如,如果查询参数是“physics”,JSPath 将返回“laureates”数组。不过,将变量代入谓词似乎行不通。
最佳答案
您的变量替换是错误的。试试 template literal像这样。
var winners = JSPath.apply(`.prizes{.category === "${category}"}.laureates`, js,
{query: category})
关于javascript - 如何将 JavaScript 变量替换为 JSPath 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49327011/
考虑供应商 API 提供的以下 JSON: import play.api.libs.json._ import play.api.libs.json.Reads._ import play.api.
我正在尝试编写一个 JavaScript 函数来读取 JSON 文件,并通过将值与用户输入的字符串进行匹配来检索信息。为了导航 JSON 文件,我使用了 JSPath,但是我不知道如何使用函数在 JS
是我的眼睛欺骗了我,还是我不能使用中间包含数组元素的 JsPath 来更新嵌套节点? (例如/a/b(0)/c) val pnJson = Json.parse("""{"a": {"b": [ {"
import play.api.libs.json._ val json: JsValue = Json.parse(""" { "name" : "Independence",
假设我有一个这样的 JSON: { "name" : "Watership Down", "location" : { "lat" : 51.235685, "long" :
我是一名优秀的程序员,十分优秀!