我一直在尝试并且未能在新的风帆js app中使用基本断点。
我创建了一个名为test的新sails项目,并添加了几行代码,这样我就可以点击路径并尝试在终端中启动断点:
Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Python34\lib\tkinter\__init__.py", line 1533, in __call__
return self.func(*args)
File "G:/Portable Apps/Portable Python 3.2.5.1/Documents/TEST.py", line 22, in function
print(answer)
UnboundLocalError: local variable 'answer' referenced before assignment
在我的路线文件中:
// app/controllers/TestController.js
module.exports = {
test: function (req, res) {
console.log('test');
debugger;
return res.json({
text: 'hello',
});
}
}
然后我转到终端并使用nodemon启动sails服务器:
// /config/routes.js
'get /test': 'TestController.test',
我的一个警告是,此解决方案应该与nodemon,forever或supervisor一起使用,以允许在nodeserver上进行livereload