我怎么能在另一个自动完成上创建两个自动完成依赖项。 我试过我的代码如下:
var rows = [];
module.exports = function (context, req, res) {
context.log('JavaScript HTTP trigger function processed a request.');
if(req.query.nfcID) {
connection.on('connect', function(err) {
request = new Request("select tagUID, ProductID, Active From Tags where TagUID = "+ req.query.nfcID,
function(err, rowCount, rows) {
if (err) {
context.log(err);
} else {
connection.close();
context.log('rows: '+rowCount);
}
});
request.on('row', function(columns) {
var row = {};
columns.forEach(function(column) {
row[column.metadata.colName] = column.value;
});
rows.push(row);
context.log(rows);
context.res = {
body: rows;
}
});
connection.execSql(request);
});
}
else {
context.res = {
status: 400,
body: "Please provide the nfc id"
};
}
context.done();
};
这没有用,请帮忙。是否有链接可用于此
答案 0 :(得分:0)
你能提供getCitySuggestions功能吗?
.bind(this)是不必要的