单击按钮后,我想从控制器调用一个函数以将一些数据存储在数据库中。即,在 javascript (jquery) 中,我有:
$( '.opener' ).click(function() {
FB.ui({
method: 'feed',
// redirect_uri: '/index.php',
link: 'http://test.com',
name: 'Bleh',
caption: 'Blah',
description: 'Testing!'
// {{$artist->stage_name}}
});
// Want to call controller function here:
{{Artists:function}}
});
在这种情况下,如何从控制器调用该函数?在上述情况下,控制器将是 ArtistsController,而函数是“function”。谢谢你。