页面的一个常见用例是为用户提供一种方法,让用户可以选择在呼叫页面上使用的内容或数据。这可以通过以下方式完成:
App.controller('selector', function (page, request) { // 'request' is data from the requestor // respond to the caller // will implicitely call App.back and destroy the page this.reply({ some: 'data' }); }); App.pick('selector', { some: 'data' }, function (data) { // 'data' is the reply data // do something with it });