有个文件是这样的
//= require action_cable
//= require_self
//= require_tree ./channels
(function() {
this.App || (this.App = {});
App.cable = ActionCable.createConsumer();
console.log("connect webSocket");
}).call(this);
我只想某一个特点页面才包含上面的文件而不是所有的。如何实现呢?