Selector struct 추가

This commit is contained in:
freestrings
2019-04-07 23:34:16 +09:00
parent d955a1632c
commit 30aa38379a
11 changed files with 294 additions and 65 deletions

View File

@ -36,7 +36,7 @@ function initEvent() {
}
function read() {
let ret = jsonpath.read(getTextarea().value, getJsonpathInput().value);
let ret = jsonpath.select(getTextarea().value, getJsonpathInput().value);
if(typeof ret === 'string') {
getReadResult().innerText = ret;
} else {