| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 338124b commit 2a9d4ae
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -795,14 +795,14 @@ private List<Join> onJoinParse(String join, JSONObject request) throws Exception | |||
| 795 | 795 | tableObj = request.getJSONObject(tableKey); | |
| 796 | 796 | targetPath = tableObj == null ? null : tableObj.getString(key); | |
| 797 | 797 | if (StringUtil.isEmpty(targetPath, true)) { | |
| 798 | - throw new IllegalArgumentException(tableKey + "." + key + ":value 中value必须为引用赋值的路径 '/targetTable/targetKey' !"); | ||
| 798 | + throw new IllegalArgumentException("/" + path + ":value 中value必须为引用赋值的路径 '/targetTable/targetKey' !"); | ||
| 799 | 799 | } | |
| 800 | 800 | ||
| 801 | 801 | //取出引用赋值路径targetPath对应的Table和key | |
| 802 | 802 | index = targetPath.lastIndexOf("/"); | |
| 803 | 803 | targetKey = index < 0 ? null : targetPath.substring(index + 1); | |
| 804 | 804 | if (StringUtil.isEmpty(targetKey, true)) { | |
| 805 | - throw new IllegalArgumentException(tableKey + "." + key + ":'/targetTable/targetKey' 中targetKey不能为空!"); | ||
| 805 | + throw new IllegalArgumentException("/" + path + ":'/targetTable/targetKey' 中targetKey不能为空!"); | ||
| 806 | 806 | } | |
| 807 | 807 | ||
| 808 | 808 | targetPath = targetPath.substring(0, index); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments