当前位置: 首页 > 文档资料 > AppJS 中文文档 >

7、Pick a page

优质
小牛编辑
127浏览
2023-12-01

页面的一个常见用例是为用户提供一种方法,让用户可以选择在呼叫页面上使用的内容或数据。这可以通过以下方式完成:

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
});