Continue Postgres conversion in server.js and templates.
This commit is contained in:
parent
0ab6af8e57
commit
45a9a42f2e
17
server.js
17
server.js
@ -96,18 +96,23 @@ app.get('/core/edit/:id', function(req, res){
|
||||
var coreId = req.params.id;
|
||||
console.log("GET /core/edit/" + coreId + ", " + JSON.stringify(d, 4));
|
||||
|
||||
db.all("select coreName, locationDesc from Cores where coreId = ?;", coreId, function(err, rows){
|
||||
if(err !== null) {
|
||||
console.log(err);
|
||||
} else {
|
||||
res.render('core-edit', {values: rows}, function(err, html) {
|
||||
pg.connect(conString, function(err, client, done) {
|
||||
if(err) {
|
||||
return console.error('error fetching client from pool', err);
|
||||
}
|
||||
client.query("select corename, locationdesc from cores where coreid = ($1);", [coreId], function(err, result) {
|
||||
//call `done()` to release the client back to the pool
|
||||
done();
|
||||
|
||||
if(err) { return console.error('error running query', err); }
|
||||
res.render('core-edit', {values: result.rows}, function(err, html) {
|
||||
if(err !== null) {
|
||||
console.log(err);
|
||||
} else {
|
||||
res.send(html);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -6,16 +6,16 @@
|
||||
<div class="form-group">
|
||||
{{label "deviceName" "Edit Device Name:"}}
|
||||
{{input "deviceName" coreName class="form-control"}}
|
||||
{{#if values.0.coreName}}
|
||||
<p class="bg-info">* Current value is, {{values.0.coreName}}</p>
|
||||
{{#if values.0.corename}}
|
||||
<p class="bg-info">* Current value is, {{values.0.corename}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
{{label "locationDesc" "Edit Location:"}}
|
||||
{{input "locationDesc" locationDesc class="form-control"}}
|
||||
{{#if values.0.locationDesc}}
|
||||
<p class="bg-info">* Current value is, {{values.0.locationDesc}}</p>
|
||||
{{#if values.0.locationdesc}}
|
||||
<p class="bg-info">* Current value is, {{values.0.locationdesc}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user