我需要有关流星科尔多瓦应用程序中深层链接的帮助。我需要一个深层链接,该链接将通过Webview(而不是浏览器)在我的应用中打开特定的路由。
到目前为止,我已经设法在我的应用程序中创建了到根路由的深层链接,但是我仍然坚持将其重定向到特定的页面/路由。
这是我到目前为止的代码:
mobile-config.js:
const columns = [
{
Header: 'Store',
accessor: 'storeName',
minResizeWidth: 50,
headerStyle: { textAlign: 'left' },
},
{
Header: 'Current Rate',
accessor: 'rate',
maxWidth: 120,
},
{
Header: 'Effective From',
accessor: 'fromDate',
Cell: renderDateCell,
maxWidth: 120,
},
];
client / startup.js:
App.configurePlugin('cordova-plugin-customurlscheme', {
URL_SCHEME: 'smartpiggybank'
});
路由器:FlowRouter,