1.准备
因为是要将服务器获取的数据放在网页中 所以说对页面的渲染是必要的 这里我准备的是 art-template模板
2.服务器的准备
服务器要准备好渲染到页面的数据
3.页面的操作
这里我做的的是一个搜索框提示功能 讲解都在代码注释中
服务器代码如下
1
2
3
4
5
6
7
8
9
10
11
|
// 输入框文字提示 app.get( "/searchAutoPrompt" , (req, res) => { // 搜索关键字 const key = req.query.key; // 提示文字列表 const list = [ "百度" , "百度官网" , "百度游戏" , "百度网盘" ]; // 搜索结果 filter是一个遍历的函数 includes(key)是凡是字符串含有key都返回 let result = list.filter((item) => item.includes(key)); // 将查询结果返回给客户端 res.send(result); }); |
页面代码:
下面的代码我用了一个封装好的Ajax函数
代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
function ajax (options) { // 默认值 var defaults = { type: 'get' , url: '' , async: true , data: {}, header: { 'Content-Type' : 'application/x-www-form-urlencoded' }, success: function () {}, error: function () {} } // 使用用户传递的参数替换默认值参数 Object.assign(defaults, options); // 创建ajax对象 var xhr = new XMLHttpRequest(); // 参数拼接变量 var params = '' ; // 循环参数 for ( var attr in defaults.data) { // 参数拼接 params += attr + '=' + defaults.data[attr] + '&' ; // 去掉参数中最后一个& params = params.substr(0, params.length-1) } // 如果请求方式为get if (defaults.type == 'get' ) { // 将参数拼接在url地址的后面 defaults.url += '?' + params; } // 配置ajax请求 xhr.open(defaults.type, defaults.url, defaults.async); // 如果请求方式为post if (defaults.type == 'post' ) { // 设置请求头 xhr.setRequestHeader( 'Content-Type' , defaults.header[ 'Content-Type' ]); // 如果想服务器端传递的参数类型为json if (defaults.header[ 'Content-Type' ] == 'application/json' ) { // 将json对象转换为json字符串 xhr.send(JSON.stringify(defaults.data)) } else { // 发送请求 xhr.send(params); } } else { xhr.send(); } // 请求加载完成 xhr.onload = function () { // 获取服务器端返回数据的类型 var contentType = xhr.getResponseHeader( 'content-type' ); // 获取服务器端返回的响应数据 var responseText = xhr.responseText; // 如果服务器端返回的数据是json数据类型 if (contentType.includes( 'application/json' )) { // 将json字符串转换为json对象 responseText = JSON.parse(responseText); } // 如果请求成功 if (xhr.status == 200) { // 调用成功回调函数, 并且将服务器端返回的结果传递给成功回调函数 defaults.success(responseText, xhr); } else { // 调用失败回调函数并且将xhr对象传递给回调函数 defaults.error(responseText, xhr); } } // 当网络中断时 xhr.onerror = function () { // 调用失败回调函数并且将xhr对象传递给回调函数 defaults.error(xhr); } } <script src= "/js/ajax.js" ></script> <script src= "/js/template-web.js" ></script> <script type= "text/html" id= "tpl" > {{each result}} <li class= "list-group-item" >{{$value}}</li> {{/each}} </script> <script> // 获取搜索框 var searchInp = document.getElementById( 'search' ); // 获取提示文字的存放容器 var listBox = document.getElementById( 'list-box' ); //这里用定时器是为了优化 定时向服务器发送请求 优化了对服务器的压力 // 存储定时器的变量 var timer = null ; // 当用户在文本框中输入的时候触发 searchInp.oninput = function () { // 清除上一次开启的定时器 clearTimeout(timer); // 获取用户输入的内容 var key = this .value; // 如果用户没有在搜索框中输入内容 if (key.trim().length == 0) { // 将提示下拉框隐藏掉 listBox.style.display = 'none' ; // 阻止程序向下执行 return ; } // 开启定时器 让请求延迟发送 timer = setTimeout( function () { // 向服务器端发送请求 // 向服务器端索取和用户输入关键字相关的内容 ajax({ type: 'get' , url: 'http://localhost:3000/searchAutoPrompt' , data: { key: key }, success: function (result) { // 使用模板引擎拼接字符串 var html = template( 'tpl' , {result: result}); // 将拼接好的字符串显示在页面中 listBox.innerHTML = html; // 显示ul容器 listBox.style.display = 'block' ; } }) }, 800) } </script> |
总结
到此这篇关于Ajax获取node服务器数据的文章就介绍到这了,更多相关Ajax获取node服务器数据内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://segmentfault.com/a/1190000024516057