Skip to content

Commit

Permalink
删除多余的字符
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxcj authored and LeoQuote committed Oct 24, 2023
1 parent fa2bb13 commit 4438cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/templates/sqlquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ <h4 class="modal-title text-danger">收藏语句</h4>
</div>

<div id="setHelp" class="alert alert-info" style="display: none">
` <i> 1smembers key 列出集合key中的所有成员</i></br>
<i> 1smembers key 列出集合key中的所有成员</i></br>
<i> 2scard key 返回集合key中元素的个数</i></br>
<i> 3sdiff key[key...] 获取集合的差集若key为1个则返回集合的全部成员</i></br>
<i> 4sunion key[key...] 返回集合的并集不存在的key会被当做空集处理</i></br>
Expand Down Expand Up @@ -824,7 +824,7 @@ <h4 class="modal-title text-danger">收藏语句</h4>
if (xhr.status === 200) {
var blob = xhr.response;
var downloadLink = document.createElement('a');
downloadLink.href = window.URL.createObjectURL(blob);
downloadLink.href = window.URL.createObjectURL(blob);
downloadLink.click();
}
};
Expand Down

0 comments on commit 4438cef

Please sign in to comment.