摘要: 之前做项目时加的动态搜索是每次输入值都调用一次后台数据库,使用起来发现读取很麻烦,速度慢,搜索快了网页就转圈,在用户使用的过程中,自然是希望网页的响应速度越快越好,所以这种方式的动态搜索就不好。然后我就写了前端的方式动态搜索。 步骤: 一、用于将搜索关键字和页面加载时传过来的数据相比较的search 阅读全文
posted @ 2020-08-20 18:54 jonykuku 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 汉字转拼音 1 /* 2 3 description: Pinyin, to get chinese pinyin from chinese. 4 license: MIT-style 5 authors: Bill Lue 6 requires: 7 core/1.2.1: '*' 8 provi 阅读全文
posted @ 2020-08-20 18:17 jonykuku 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 汉字转拼音 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Text.RegularExpressions; 5 6 namespace CommonLibrary 7 { 阅读全文
posted @ 2020-08-20 10:24 jonykuku 阅读(1047) 评论(0) 推荐(1) 编辑