在我的appjs项目中,我显示一个网页,其中包含以下表格。 当用户提交此表单时,我收到内部服务器错误。 你能告诉我如何在我的app.js中处理这个/ submit_pariring_code请求吗?
我可以在javascript代码中处理此表单提交,但这将使我允许在服务器端跨域(我不想这样做。)
<form class="form-signin" action="/submit_pairing_code">
<h3 class="form-signin-heading">Please enter your Pairing Code</h3>
<input type="text" name="pairing_code" class="input-block-level" placeholder="Pairing Code">
<br/>
<input type="text" name="computer_name" class="input-block-level" placeholder="Your Computer Name">
<br/>
<button class="btn btn-large btn-primary" type="submit">Submit</button>
</form>
答案 0 :(得分:1)
以下代码实现了神奇。
var app = module.exports = require('appjs');
var http = require('http');
app.serveFilesFrom(__dirname + '/content');
app.router.get('/submit_pairing_code', function(request, response, next){
response.send('Here is your pairing_code ' + request.params.pairing_code);
});