当前位置: 首页 > news >正文

大连嘉良建设有限公司网站wordpress 经验插件

大连嘉良建设有限公司网站,wordpress 经验插件,网站哪家做得好,个人如何创建公众号1. 前言 ES文档的每个字段都至少有一个数据类型#xff0c;此类型决定了字段值如何被存储以及检索。例如#xff0c;字符串类型可以定义为text或者keyword#xff0c;前者用于全文检索#xff0c;会经过分词后索引#xff1b;后者用于精准匹配#xff0c;值会保持原样被…1. 前言 ES文档的每个字段都至少有一个数据类型此类型决定了字段值如何被存储以及检索。例如字符串类型可以定义为text或者keyword前者用于全文检索会经过分词后索引后者用于精准匹配值会保持原样被索引。 ES字段类型按族分组同一族中的类型具有完全相同的搜索行为但可能具有不同的空间使用或性能特征。 2. 基本数据类型 2.1 binary 二进制数据类型接受以Base64编码的二进制数据作为输入默认不可索引和搜索。 // 创建索引 PUT files {mappings: {properties: {title:{type: text},blob:{type: binary}}} } // 索引文档 POST files/_doc {title:hello.txt,blob:aGVsbG8gd29ybGQ } //获取文档 GET files/_search{took: 30,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: files,_id: 7-tinY4BODFb3LbQRHQD,_score: 1,_source: {title: hello.txt,blob: aGVsbG8gd29ybGQ}}]} }二进制数据类型字段不会被索引固无法被搜索否则会报错 {error: {root_cause: [{type: query_shard_exception,reason: failed to create query: Binary fields do not support searching,index_uuid: IM89dUaXTuqYCgnmMlb9VQ,index: files}],type: search_phase_execution_exception,reason: all shards failed,phase: query,grouped: true,failed_shards: [{shard: 0,index: files,node: X6yldsn_RMuokM0m_Q5Z1g,reason: {type: query_shard_exception,reason: failed to create query: Binary fields do not support searching,index_uuid: IM89dUaXTuqYCgnmMlb9VQ,index: files,caused_by: {type: illegal_argument_exception,reason: Binary fields do not support searching}}}]},status: 400 }2.2 boolean 布尔类型接受JSON的 true 或 false值也可以接受对应字符串格式作为输入。 PUT users {mappings: {properties: {name:{type: keyword},deleted:{type: boolean}}} }POST users/_doc {name:Lisa,deleted:false }2.3 Keywords 关键字类型族包括keyword、constant_keyword和wildcard。 2.3.1 keyword 关键字类型用于存储结构化内容如id、电子邮件地址、主机名、状态码、邮政编码或标签。用于精准匹配、聚合、以及排序。 PUT users {mappings: {properties: {user_id:{type: keyword}}} }2.3.2 constant_keyword 常量关键字类型它的目的是让文档中的字段具有相同的值什么意思呢 举个例子创建一个logs索引其中level字段定义为constant_keyword类型值是”debug“ PUT logs {mappings: {properties: {content:{type: text},level:{type: constant_keyword,value:debug}}} }下面两个索引请求是等价的level最终都是“debug” POST logs/_doc {content:haha,level:debug }POST logs/_doc {content:haha }但是如果索引一个非法的level值就会得到一个异常 POST logs/_doc {content:haha,level:info }{error: {root_cause: [{type: document_parsing_exception,reason: [3:11] failed to parse field [level] of type [constant_keyword] in document with id 9ut5nY4BODFb3LbQtHRG. Preview of fields value: info}],type: document_parsing_exception,reason: [3:11] failed to parse field [level] of type [constant_keyword] in document with id 9ut5nY4BODFb3LbQtHRG. Preview of fields value: info,caused_by: {type: illegal_argument_exception,reason: [constant_keyword] field [level] only accepts values that are equal to the value defined in the mappings [debug], but got [info]}},status: 400 }总结一下constant_keyword目的是让索引内的文档字段具有相同的值如果映射没有定义默认值则以第一个索引到的不为空的字段值作为默认值如果再索引到不同的值ES会抛出异常。 2.3.3 wildcard 通配符字段类型可以在字符串中实现通配符的模式查找。 如下示例创建books索引并索引文档 PUT books {mappings: {properties: {title:{type: wildcard}}} }POST books/_doc {title:C语言程序设计 }使用通配符查找书名 GET books/_search {query: {wildcard: {title: {value: *语言*设计}}} }{took: 11,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: books,_id: 9-uInY4BODFb3LbQW3Sn,_score: 1,_source: {title: C语言程序设计}}]} }2.4 Numbers 数字类型族包括long、integer、short、byte、double、float、half_float、scaled_float、unsigned_long。 除了整型和浮点数的区别外其它就是长度不一样导致表示的数值范围不同。在数据类型的选择上建议在满足需求的基础上选择占用空间最小的数据类型以节省存储空间和检索性能。 2.5 Dates 日期类型包括date和date_nanos。因为JSON并没有日期类型所以ES可以接收的日期输入是格式化的日期字符串和时间戳。 2.5.1 date 日期类型可以通过format指定日期的格式。如下示例接受格式化的日期字符串或时间戳作为输入值 PUT dates {mappings: {properties: {date:{type: date,format: yyyy-MM-dd HH:mm:ss||epoch_millis}}} }以下两种索引请求均支持 POST dates/_doc {date:2024-01-01 00:00:00 }POST dates/_doc {date:1618321898000 }2.5.2 date_nanos 纳秒级的时间类型是对日期数据类型的补充。区别是date使用毫秒精度存储日期、date_nanos使用纳秒精度存储日期date_nanos日期范围被限制在大约1970到2262之间它存储的是自epoch依赖的纳秒时长。 如下示例接收格式化的日期字符串或时间戳作为输入 PUT date-nanos {mappings: {properties: {date_nanos:{type: date_nanos,format: strict_date_optional_time_nanos||epoch_millis}}} }索引文档请求 POST date-nanos/_doc {date_nanos:2024-01-01T12:00:00.123456789Z }2.6 alias 别名类型它可以用来给索引中的字段定义别名。 如下示例我们给field_a定义一个别名字段 PUT alias-index {mappings: {properties: {field_a:{type: keyword},field_a_alias:{type: alias,path:field_a}}} }如此一来下面两个搜索请求是等价的 GET alias-index/_search {query: {term: {field_a: {value: haha}}} }GET alias-index/_search {query: {term: {field_a_alias: {value: haha}}} }3. 对象和关系类型 3.1 object JSON文档是分层的文档可能还会包含内部对象如下索引文档请求示例 POST users/_doc {name:张三,address:{province:浙江省,city:杭州市} }在ES内部该文档会被索引为简单的键值对列表 {name:张三,address.province:浙江省,address.city:杭州市 }索引映射看起来是下面这样的address包含province和city两个子字段address并没有显式的指定typeobject这是默认值。 {users: {mappings: {properties: {address: {properties: {city: {type: text,fields: {keyword: {type: keyword,ignore_above: 256}}},province: {type: text,fields: {keyword: {type: keyword,ignore_above: 256}}}}},name: {type: text,fields: {keyword: {type: keyword,ignore_above: 256}}}}}} }3.2 flattened 默认情况下ES的配置dynamic:true即允许动态映射添加新字段如果不加约束可能会导致索引映射字段激增最终超过索引字段数限制index.mapping.total_fields.limit:1000 这种非预期的字段数激增被称作”字段膨胀“。 尤其是索引结构复杂的文档如下示例会导致索引的字段结构变得混乱 POST logs/_doc {project:user-server,content:{field_a:{a:{a1:{a1_1:{},a1_2:{},a1_3:{}},a2:{},a3:{}},b:{},c:{}...},field_b:{......}} }在这种情况下当面临索引包含大量不可预测字段的文档时可以将字段类型设置为”flattened“来避免字段膨胀的问题。”flattened“译为”扁平“它会将整个嵌套的JSON对象索引为单个keyword类型以减少字段总数。 如下示例将用户地址设为flattened类型无论address对象结构如何复杂索引字段数都不会变。 PUT users {mappings: {properties: {name:{type: keyword},address:{type: flattened}}} }索引如下文档请求 POST users/_doc {name:张三,address:{province:浙江省,city:杭州市,region:西湖区,street:文一西路,detail:某某小区1幢1号} }查看索引映射依旧只有俩字段 GET users/_mapping{users: {mappings: {properties: {address: {type: flattened},name: {type: keyword}}}} }索引字段更新具备额外的开销ES必须为每个字段更新集群状态跨节点的集群状态传输是单线程操作的需要更新的字段越多所需的时间就越长甚至导致整个集群宕机。 3.3 nested 嵌套数据类型它和object类似也被用来存储JSON对象或数组它允许以一种可以彼此独立查询的方式对对象数组进行索引。什么意思呢 看一个例子创建users索引并索引文档lisa有男性Jack和女性Ruth两位朋友。 PUT usersPOST users/_doc {name:lisa,friends:[{name:Jack,gender:男},{name:Ruth,gender:女}] }接下来我们执行bool查询搜索具有女性Jack朋友的用户按照正常的业务逻辑不应该召回任何文档但是结果出乎意料地返回了lisa GET users/_search {query: {bool: {must: [{match: {friends.name: Jack}},{match: {friends.gender: 女}}]}} }{took: 3,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 0.5753642,hits: [{_index: users,_id: COvanY4BODFb3LbQgXW-,_score: 0.5753642,_source: {name: lisa,friends: [{name: Jack,gender: 男},{name: Ruth,gender: 女}]}}]} }出现这种情况的原因是ES文档没有内部对象的概念它会将对象层次结构扁平化为一个简单的键值对列表值使用数组存储就像这样 {name:lisa,friends.name:[Jack,Ruth],friends.gender:[男,女] }单个friend的关系已经丢失示例中的搜索条件是(“Jack” in friends.name) and (“女” in friends.gender) 所以lisa被召回就可以理解了。 要解决这个问题本质上是要索引对象数组并维护数组中每个对象的独立性此时可以使用ES提供的“nested”数据类型如下所示 PUT users {mappings: {properties: {name: {type: keyword},friends: {type: nested,properties: {name: {type: keyword},gender: {type: keyword}}}}} }搜索方式改为nested如下所示将不会再找回任何文档 GET users/_search {query: {bool: {must: [{nested: {path: friends,query: {bool: {must: [{match: {friends.name: Jack}},{match: {friends.gender: 女}}]}}}}]}} }nested类型将嵌套对象索引为单独的隐藏文档使其可以独立于其它对象而查询每个对象。上述示例中lisa.friends的存储结构就变成了下面这样每个friend都单独存储为内部的隐藏文档。 {{friends.name:[Jack],friends.gender:[男]},{friends.name:[Ruth],friends.gender:[女]} }3.4 join join数据类型用来给同一索引中的文档创建父子关系有点类似于关系数据库中的表连接。 如下示例创建一个问答索引用于搜索问题和答案 PUT question-answer-index {mappings: {properties: {content: {type: text},join_field: {type: join,relations: {question: answer}}}} }分别索引父文档和子文档其中索引子文档时路由值routing是必须的因为ES必须保证父子文档索引在同一个分片里。 // 父文档 POST question-answer-index/_doc/1 {content: Elasticsearch是什么,join_field: {name: question} }// 子文档 POST question-answer-index/_doc/2?routing1 {content: Elasticsearch是位于Elastic Stack 核心的分布式搜索和分析引擎。,join_field: {name: answer,parent: 1} }根据父文档搜索子文档 GET question-answer-index/_search {query: {has_parent: {parent_type: question,query: {match: {content: Elasticsearch}}}} }{took: 4,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: question-answer-index,_id: 2,_score: 1,_routing: 1,_source: {content: Elasticsearch是位于Elastic Stack 核心的分布式搜索和分析引擎。,join_field: {name: answer,parent: 1}}}]} }根据子文档搜索父文档 GET question-answer-index/_search {query: {has_child: {type: answer,query: {match: {content: Elasticsearch}}}} }{took: 5,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: question-answer-index,_id: 1,_score: 1,_source: {content: Elasticsearch是什么,join_field: {name: question}}}]} }除了示例中的一对一的关系join也支持定义一对多的关联关系join本身支持纵向的层级结构除了定义父子关系还可以定义子孙关系但是都必须保证有关系的文档索引在同一分片里。 join类型的一些限制需要注意 每个索引仅允许定义一个join类型的字段父子文档必须索引在同一个分片里一个父文档可以有多个子文档一个子文档只能有一个父文档 4. 结构化数据类型 4.1 Range 范围字段类型表示一个连续的值范围由上边界和下边界组成。ES目前支持的范围类型有整型范围、浮点数范围、日期范围和ip范围。 如下示例我们创建一个meetings索引其中会议的持续时间duration字段就是一个日期范围类型 PUT meetings {mappings: {properties: {title:{type: text},duration:{type: date_range,format: yyyy-MM-dd HH:mm:ss}}} }接下来索引文档 POST meetings/_doc {title:需求评审会,duration:{gte:2024-01-01 12:00:00,lte:2024-01-01 12:30:00} }使用term查询即可只要查询的值在给定的时间范围内就可以召回文档 GET meetings/_search {query: {term: {duration: {value: 2024-01-01 12:10:00}}} }{took: 4,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: meetings,_id: CuuRoY4BODFb3LbQk3WN,_score: 1,_source: {title: 需求评审会,duration: {gte: 2024-01-01 12:00:00,lte: 2024-01-01 12:30:00}}}]} }4.2 ip ip类型字段可以用来存储IPv4和IPv6地址。 如下示例创建一个computers索引 PUT computers {mappings: {properties: {name:{type: keyword},ip:{type: ip}}} }索引文档 POST computers/_doc {name:C01,ip:192.168.0.1 } POST computers/_doc {name:C02,ip:192.168.0.2 }可以根据ip精确匹配 GET computers/_search {query: {term: {ip: {value: 192.168.0.1}}} }{took: 0,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 1,hits: [{_index: computers,_id: DeuloY4BODFb3LbQV3UG,_score: 1,_source: {name: C01,ip: 192.168.0.1}}]} }也可以用CIDR表示法根据前缀查询 GET computers/_search {query: {term: {ip: {value: 192.168.0.0/24}}} }{took: 0,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 2,relation: eq},max_score: 1,hits: [{_index: computers,_id: DeuloY4BODFb3LbQV3UG,_score: 1,_source: {name: C01,ip: 192.168.0.1}},{_index: computers,_id: DuuloY4BODFb3LbQW3XF,_score: 1,_source: {name: C02,ip: 192.168.0.2}}]} }5. 文本搜索类型 5.1 Text 文本类型族包含text和match_only_text经过分析的非结构化文本数据。 5.1.1 text 索引全文值的字段例如新闻内容、商品介绍等ES在索引之前会先经过分析器将字符串转换成单个词列表再存储默认不存储原始全文值所以无法通过精准匹配来检索text类型也不可用于排序和聚合text适合存储非结构化但人类可阅读的文本内容。 如下示例创建一个news索引用于索引新闻数据 PUT news {mappings: {properties: {title:{type: text},content:{type: text}}} }索引两篇新闻文档 POST news/_doc {title:美国苹果公司发布新款iPhone,content:新iPhone发布美国苹果公司震撼发布最新款iPhone。精致设计强劲性能和先进功能的完美结合。期待它带来的创新体验 }POST news/_doc {title:今年苹果预计将推迟上市,content:据报道今年水果市场上备受期待的苹果预计将推迟上市。这可能是由于天气等因素导致苹果的生长和成熟过程延迟。消费者需稍作等待相信在不久的将来将能品尝到新鲜甜蜜的苹果。 }最后通过multi_match来检索文档检索的字段包括title和content其中title具备更高的权重文档得分会更高 GET news/_search {query: {multi_match: {query: 苹果,fields: [title^2,content]}} }{took: 11,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 2,relation: eq},max_score: 0.72928625,hits: [{_index: news,_id: meQwuI4BPIYet_3flP8X,_score: 0.72928625,_source: {title: 美国苹果公司发布新款iPhone,content: 新iPhone发布美国苹果公司震撼发布最新款iPhone。精致设计强劲性能和先进功能的完美结合。期待它带来的创新体验}},{_index: news,_id: muQwuI4BPIYet_3fl_9V,_score: 0.72928625,_source: {title: 今年苹果预计将推迟上市,content: 据报道今年水果市场上备受期待的苹果预计将推迟上市。这可能是由于天气等因素导致苹果的生长和成熟过程延迟。消费者需稍作等待相信在不久的将来将能品尝到新鲜甜蜜的苹果。}}]} }5.1.2 match_only_text Elasticsearch7.14推出的全新文本类型它和text的区别是match_only_text不存储长度归一化因子、词频数据、位置数据所以match_only_text不支持文档评分带来的好处就是比text更节省存储空间非常适合用于存储日志。 如下示例创建logs索引用于索引日志数据其中text字段类型是match_only_text PUT logs {mappings: {properties: {level:{type: keyword},text:{type: match_only_text}}} }索引一些日志 POST logs/_doc {level:info,text:This is the first log }POST logs/_doc {level:info,text:This is the second log log }最后通过match检索日志第二条日志因为有两个”log“所以评分理论上会更高但是match_only_text不记录词频所以也就不参与评分所以两条日志的评分结果都是1 GET logs/_search {query: {match: {text: log}} }{took: 12,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 2,relation: eq},max_score: 1,hits: [{_index: logs,_id: m-Q5uI4BPIYet_3f4P8H,_score: 1,_source: {level: info,text: This is the first log}},{_index: logs,_id: nOQ5uI4BPIYet_3f5f8j,_score: 1,_source: {level: info,text: This is the second log log}}]} }5.2 completion completion类型主要用于搜索建议和自动补全如果你要做一个类似百度搜索的联想提示功能那么就可以使用ES的completion类型。completion类型的suggest性能非常高ES使用了一种特殊的结构用于前缀搜索并且数据会缓存在内存中。 如下示例创建一个webpages索引用于索引网页其中suggest字段使用completion类型数据来源是title PUT webpages {mappings: {properties: {title: {type: text,copy_to: suggest},suggest: {type: completion},url: {type: keyword}}} }接下来我们索引几篇文档 POST webpages/_doc {title:Java-百度百科,url:https://baike.baidu.com/item/Java/85979 }POST webpages/_doc {title:java能做什么,url:https://baijiahao.baidu.com/s?id1765494775400937848 }POST webpages/_doc {title:python编程从入门到精通,url:https://baijiahao.baidu.com/s?id1764847625088362688 }最后通过suggest检索自动补全的数据 GET webpages/_search {suggest: {title-suggestion: {text: java,completion: {field: suggest}}} }{took: 0,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 0,relation: eq},max_score: null,hits: []},suggest: {title-suggestion: [{text: java,offset: 0,length: 4,options: [{text: Java-百度百科,_index: webpages,_id: neRCuI4BPIYet_3f8v8w,_score: 1,_source: {title: Java-百度百科,url: https://baike.baidu.com/item/Java/85979}},{text: java能做什么,_index: webpages,_id: nuRCuI4BPIYet_3f9f9k,_score: 1,_source: {title: java能做什么,url: https://baijiahao.baidu.com/s?id1765494775400937848}}]}]} }6. 空间数据类型 ES支持的空间数据类型比较丰富包括geo_point、geo_shape、point、shape。 6.1 geo_point geo_point类型用来存储地址位置经纬度坐标用于地址位置的搜索和聚合分析例如实现附近的人、附近的店铺等功能。 如下示例创建hotels索引索引酒店信息其中location字段使用geo_point类型 PUT hotels {mappings: {properties: {name: {type: keyword},location:{type: geo_point}}} }再索引两个文档 POST hotels/_doc {name:如家酒店,location:{lat:10.1,lon:10.1} }POST hotels/_doc {name:亚朵酒店,location:{lat:10.2,lon:10.2} }最后给定一个圆心坐标查询附近10km的酒店 GET hotels/_search {query: {bool: {filter: [{geo_distance: {distance: 10km,location: {lat: 10.15,lon: 10.15}}}]}} }{took: 1,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 2,relation: eq},max_score: 0,hits: [{_index: hotels,_id: puRxuI4BPIYet_3fT__u,_score: 0,_source: {name: 如家酒店,location: {lat: 10.1,lon: 10.1}}},{_index: hotels,_id: p-RxuI4BPIYet_3fUv_f,_score: 0,_source: {name: 亚朵酒店,location: {lat: 10.2,lon: 10.2}}}]} }还可以使用geo_bounding_box矩形搜索给定矩形的左上方和右下方坐标即可 GET hotels/_search {query: {bool: {filter: [{geo_bounding_box: {location: {top_left: {lat: 10.175,lon: 10},bottom_right: {lat: 10,lon: 10.175}}}}]}} }{took: 1,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 0,hits: [{_index: hotels,_id: puRxuI4BPIYet_3fT__u,_score: 0,_source: {name: 如家酒店,location: {lat: 10.1,lon: 10.1}}}]} }6.2 geo_shape geo_point用来在空间里定义一个点geo_shape则可以用来定义一个形状支持点、线、圆、矩形、多边形。例如可以用geo_shape来表示一个景点的区域、一个停车场的范围等。 如下示例创建scenic-spots索引用于索引景点信息其中location_shape字段使用geo_shape类型 PUT scenic-spots {mappings: {properties: {name: {type: keyword},location_shape:{type: geo_shape}}} }我们使用polygon多边形来索引杭州西湖和西溪湿地两个景点 POST scenic-spots/_doc {name:杭州西湖,location_shape:{type:polygon,coordinates:[[[120.13,30.25],[120.16,30.26],[120.16,30.25],[120.15,30.23],[120.14,30.23],[120.13,30.25]]]} }POST scenic-spots/_doc {name:杭州西溪湿地,location_shape:{type:polygon,coordinates:[[[120.05,30.28],[120.09,30.28],[120.09,30.26],[120.04,30.25],[120.05,30.28]]]} }最后通过形状搜索我们使用within即搜索形状必须包含在索引形状内我们搜索西湖内的三潭印月区域结果返回西湖 GET scenic-spots/_search {query: {bool: {filter: [{geo_shape: {location_shape: {shape: {type: polygon,relation: within,coordinates: [[[120.14,30.24],[120.145,30.245],[120.135,30.235],[120.14,30.24]]]}}}}]}} }{took: 6,timed_out: false,_shards: {total: 1,successful: 1,skipped: 0,failed: 0},hits: {total: {value: 1,relation: eq},max_score: 0,hits: [{_index: scenic-spots,_id: xeQ7vI4BPIYet_3fHP81,_score: 0,_source: {name: 杭州西湖,location_shape: {type: polygon,coordinates: [[[120.13,30.25],[120.16,30.26],[120.16,30.25],[120.15,30.23],[120.14,30.23],[120.13,30.25]]]}}}]} }除了within还支持disjoint 搜索形状和索引形状不重叠、intersects 搜索形状和索引形状有重叠部分。
http://www.dnsts.com.cn/news/209182.html

相关文章:

  • 一般网站建设公司wordpress qq主题下载
  • 网站开发用什么后端框架百度网站建设怎么联系
  • 宣城市网站集约化建设公司官网怎样制作
  • 个体户可以注册网站建设服务馆陶网站
  • 做外贸必须有网站吗商标购买网商标
  • 青岛有没有专门做淘宝网站聊城做wap网站服务
  • 设计类网站排名cms网站群
  • 云服务器网站建设经典网站赏析
  • 江苏林润建设工程有限公司网站企业站模板明细
  • django做的电子商务网站网站开发介绍ppt
  • 天津正规制作网站公司福建省建设执业继续教育网站
  • 建设网站的安全性免费建站模板哪个好
  • 网站icp备案时间公司网站优化哪家好
  • 北京的网站建设公司哪家好项目网络图关键路径计算
  • 班级建设网站设计方案百度网站排名优化工具
  • 公司网站模板最新百度网盟推广是什么
  • wordpress修改网站标题自己做的网站怎么置顶
  • 网站首页鲁大师中国建设银行官网招聘信息
  • 做购物网站骗人wordpress 网站标题设置
  • 自己做网站好还是凡科网站建设合同交印花税么
  • 电子商务网站建设与规划视频做网站图
  • 做教育app的网站有哪些内容wordpress地址重改
  • 网站维护是什么专业男女做暖暖的试看网站漫画
  • 佛山小网站建设网站的优势
  • 上海做企业网站的公司网页设计与制作期末作业成品
  • 在哪里创建网站平台网站建设后续的费用
  • 成都市营销型网站建设软文模板300字
  • 户外拓展网站源码wordpress考试系统插件
  • 成都建网站要多少钱网页qq登陆保护在哪里
  • 邢台建设企业网站价格wordpress主题带个人中心