我正在尝试从 derby.js 中客户端上的事件运行一些仅服务器代码我正在使用 x-bind 将事件绑定到视图上,如下所示:
<a href="#" x-bind="click: func">click me</a>
在应用程序上:
exports.func=function(e,el,next){
// i want to run some server code here, but it runs on the client only
}
所以:
- 这可以以任何方式完成吗?
- 如果没有,有没有办法在 derby.js 上以“本机”方式使用套接字
当其余的都是实时的时,我根本不想回退到使用服务器路由的 ajax。