Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何通过纯 JS 代码(无外部框架)在 iOS 中创建一个 JS-Native 桥,但我想知道当我使用 Backbone.js 时有什么变化吗?如果是,那么任何人都可以解释一下。
你可以使用这些方面的东西:
yourBackboneObject.on('all', function(eventName) { var args = Array.prototype.slice.call(arguments); args.shift(); NativeBridge.call(eventName, args); });
在对象中:
this.trigger('someiOSfunction', someArg, someOtherArg);