- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在通过对 Express 的 AXIOS 调用发送到我的 API 的数组中获取数据时遇到问题。电话发送得很好,但我在下面提供了。请求被正常接收,请求中的所有其他数据都毫无问题地插入到数据库中。问题是我无法获取正在发送的 property_features 参数中的数据。我在通话中看到我收到了多个 property_features 参数,但我不知道如何获取数据。
console.log('Logging Features' + params.property_features);
显示未定义但控制台中的查询显示我已获取数据。
app.all('/', function(req, res) {
var querystring = url.parse(req.url, true);
var params = querystring.query;
//console.log(querystring.search);
console.log('Logging Features' + params.property_features);
//Insert Type to populate new property Type field
if (params.acc === 'ant') {
console.log('Creating new property type...');
connection.query('INSERT INTO property_type(types) VALUES(?)', [params.property_type], function(error, results, fields) {
if (error) throw error;
console.log('Insert Property Type Query Successful' + results);
});
res.send('Property type added OK!!');
//Insert Property
} else if (params.acc === 'cnp') {
console.log('Creating new property....');
params.property_id = newuuid();
connection.query('INSERT INTO properties(property_id, branch, reference_number, property_type, property_price, price_option, rooms, bath, date_built, squarefeet, address, location, zip, rental_criteria, short_descrip, full_descrip, property_status, featured, visible, tour_url, property_features, notes) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)', [params.property_id, params.branch, params.reference_number, params.property_type, params.property_price, params.price_option, params.rooms, params.bath, params.date_built, params.squarefeet, params.address, params.location, params.zip, params.rental_criteria, params.short_descrip, params.full_descrip, params.property_status, params.featured, params.visible, params.tour_url, params.property_features, params.property_notes], function(error, results, fields) {
if (error) throw error;
console.log('Insert Property Query Successful' + results);
});
res.send('Property added OK!!');
//Insert location to populate new property locations field
}
console.log('There was a successful transaction!!!!');
});
正如您所看到的,我正在接收带有参数的请求并解析它们,然后通过 nodejs 中的 mysql 模块将它们插入到数据库中。还有其他一些,但我很确定这是与该模块隔离的。
我遇到的问题是 property_features 参数。
cp = {
property_id: '',
branch: document.getElementById('prop_branch').value,
reference_number: document.getElementById('reference_number').value,
property_type: document.getElementById('property_type').value,
property_price: document.getElementById('property_price').value,
price_option: document.getElementById('price_option').value,
rooms: document.getElementById('rooms').value,
bath: document.getElementById('bath').value,
date_built: document.getElementById('date_built').value,
squarefeet: document.getElementById('squarefeet').value,
address: document.getElementById('property_address').value,
location: document.getElementById('property_location').value,
zip: document.getElementById('property_zip').value,
rental_criteria: document.getElementById('rental_criteria').value,
short_descrip: document.getElementById('short_descrip').value,
full_descrip: document.getElementById('full_descrip').value,
property_status: document.getElementById('property_status').value,
featured: '',
visible: '',
tour_url: document.getElementById('tour_url').value,
property_notes: '',
property_features: []
};
这是使用 Axios 通过 http 请求发送的数据示例。关系的那一边工作得很好,因为我正在我的 API 中获取数据。
2018-10-19 16:41:05.776 PDT "GET /?acc=cnp&branch=Branch&reference_number=&property_type=Unfurnished&property_price=&price_option=Per+Month&rooms=1&bath=0&date_built=&squarefeet=&address=&location=Long+Beach&zip=&rental_criteria=&short_descrip=&full_descrip=&property_status=Leased&featured=true&visible=true&tour_url=&property_notes=&property_features%5B%5D=Swimming+Pool&property_features%5B%5D=Close+to+Burbank+Elementary&property_features%5B%5D=Lower+Unit&property_features%5B%5D=Laminated+Hardwood+Floors&property_features%5B%5D=Utilities+paid HTTP/1.1" 304 158 - "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36" "centprop-219008.appspot.com" ms=1117 cpu_ms=1274 cpm_usd=1.7657e-8 loading_request=1 instance=00c61b117cf1a1e2d4a42d33a8f29b82f4343c86edd94138399fa3b2d077916b3324cd9246 app_engine_release=1.9.65 trace_id=43a2aabf9b0d5726a3dfb4ba610b5ba2
如您所见,我正在以带有嵌入式数组的 JSON 格式发送数据。那就是我的问题发生的地方。除了此变量中的数据外,所有其他数据都可以很好地填充到数据库中。
axios.get(theUrl, {
params: {
acc: 'cnp',
property_id: cp.id,
branch: cp.branch,
reference_number: cp.reference_number,
property_type: cp.property_type,
property_price: cp.property_price,
price_option: cp.price_option,
rooms: cp.rooms,
bath: cp.bath,
date_built: cp.date_built,
squarefeet: cp.squarefeet,
address: cp.address,
location: cp.location,
zip: cp.zip,
rental_criteria: cp.rental_criteria,
short_descrip: cp.short_descrip,
full_descrip: cp.full_descrip,
property_status: cp.property_status,
featured: cp.featured,
visible: cp.visible,
tour_url: cp.tour_url,
property_notes: cp.property_notes,
property_features: cp.property_features
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
.then(function () {
// always executed
});
这里是发送数据的 axios 调用,这边再次工作正常,数据确实到达了 API,为了清楚起见,我发布了这个。
2018-10-19 16:43:12.842 PDT Logging Features undefined
这是我在 API 中注销参数时遇到的问题。 features 参数正在获取多条数据,因此在请求中我看到了 property_feature=&!!!多次。
我再次尝试解析数据和字符串化,但我无法在该调用中操作数据。我觉得我缺少一个数组层的地址,我无法理解。
我正在使用的模块。
const http = require('http');
const url = require('url');
const mysql = require('mysql');
const config = require('./config');
const express = require('express');
const cors = require('cors');
const bodyParser = require('body-parser');
const request = require('request');
const axios = require('axios');
const querystring = require('querystring');
const uuid4 = require('uuid4');
const app = express();
const admin = express(); // the sub app
const secret = express();
const port = 8080
app.use(cors());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
在此先感谢您的帮助。
最佳答案
您错误地使用了 querystring
来获取 url 参数。
首先,您有一个名为 querystring
的局部变量,它与 Node 模块变量冲突。我不确定为什么你在那里没有收到错误,因为你对 Node 模块 querystring
使用了 const
。
无论如何,解析参数的正确方法是:
const querystring = require("querystring");
var params = querystring.parse(req.url);
console.log(params.property_features);
这还可以处理您的 url 中有多个 property_features
变量的情况,方法是将它们放在一个数组中。
关于javascript - NodeJS 中嵌套数组的 Express URL 参数问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52909723/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!