全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果390,365个

ThinkPHP2.0读取MSSQL提示Incorrect syntax near the keyword 'AS...

出现的情况是使用 query 可以正确读取到数据,而使用M方法,则无法读取,会报出 Incorrect syntax near the keyword 'AS'. 错误 原因是DbMssql.class.php驱动的查询语句有问题。由于TP2.0 的 MSSQL 驱动是对SQL 2005有效,但对2000版本则无效,原因是2000版本里没有 ROW_NUMBER 功能,2005才有这个功能作用好像是对数...
www.jb51.net/article/515...htm 2024-9-13

vue3关键字高亮指令的实现详解_vue.js_脚本之家

function createRangeRectItem(keyWord: string, dom: HTMLElement): CDomRectType[] { const textDom: any = dom.firstChild let matchResult: any = null const reg: RegExp = new RegExp(escString(keyWord), 'gi') let result: CDomRectType[] = [] const range = document.createRange() while (...
www.jb51.net/javascript/304914x...htm 2024-9-19

Python 敏感词过滤的实现示例_python_脚本之家

for keyword in open(path): self.keywords.add(keyword.strip().decode('utf-8').lower()) def filter(self, message, repl="*"): message = str(message).lower() for kw in self.keywords: message = message.replace(kw, repl) return message使用...
www.jb51.net/article/2213...htm 2024-9-15

Elasticsearch常用DSL语法巧记_java_脚本之家

"type": "keyword" }, "price": { "type": "double" }, "saleNum": { "type": "integer" }, "status": { "type": "integer" }, "stock": { "type": "integer" }, "title": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_smart" } } }, # 根据情况...
www.jb51.net/program/3141297...htm 2024-9-19

java实现微信公众号发送模版消息_java_脚本之家

DataInfo keyword1 = new DataInfo(wechatUser.getNickName(), "#ff0000"); DataInfo keyword2 = new DataInfo(order.getOrderNumber(), "#ff0000"); DataInfo keyword3 = new DataInfo("¥" + order.getSumPrice() + "元", "#ff0000"); DataInfo keyword4 = new DataInfo(goodsInfo, "#ff0000...
www.jb51.net/article/1376...htm 2024-9-13

基于Python实现抢注大词的提词工具_python_脚本之家

keyword_list=data_str.split('\n') withopen('dont.txt','r',encoding='utf-8') asfile: dont_set=set(file.read().split('\n')) word_count_dict=dict() new_word_list=extract_phrase(keyword_list,top_k=top_k) fornew_wordinnew_word_list: ...
www.jb51.net/article/2766...htm 2024-9-19

JQuery+JS实现仿百度搜索结果中关键字变色效果_jquery_脚本之家

function setHeightKeyWord(id, keyword, color, bold) { if (keyword == "") return; var tempHTML = $("#" + id).html(); var htmlReg = new RegExp("\<.*?\>", "i"); var arrA = new Array(); for (var i = 0; true; i++) { ...
www.jb51.net/article/278...htm 2024-9-16

Android 搜索结果匹配关键字且高亮显示功能_Android_脚本之家

temp 即是改变后的字,keyWord就加了红色。2.多关键字匹配有的时候我们做搜索的时候 是需要将 用户输入的关键字 在服务端做拆分 ,拆分为多个关键字去搜索。那么服务端返回数据的时候 关键字被拆分为多个。也就是返回的是一个 关键字数组。这种情况我们在客户端做 关键字匹配的时候就要写一个算法,将段落中的多个...
www.jb51.net/article/1143...htm 2024-9-14

JavaScript实现关键字高亮功能_基础知识_脚本之家

/// fHl(document.getElementById('at_main'), '独自|飘过|悠长', true, 'search.asp?keyword='); /// 这里的'at_main'是指高亮id='at_main'的div里面的内容。search.asp?keyword=指给关键字加的链接地址, /// 我这里加了一个参数,在后面要用到。可以是任意的地址。
www.jb51.net/article/573...htm 2024-9-14

Python利用Beautiful Soup模块搜索内容详解_python_脚本之家

customsoup = BeautifulSoup(customattr,'lxml') customsoup.find(data-custom="custom") # SyntaxError: keyword can't be an expression这个时候使用 attrs 属性值来传递一个字典类型作为参数进行搜索:1 2 using_attrs = customsoup.find(attrs={'data-custom':'custom'}) print using_attrs基于...
www.jb51.net/article/1097...htm 2024-9-19