EmberJS 模板操作参数
2018-01-03 18:47 更新
描述
您还可以向操作处理程序传递可选参数。在这种情况下,操作名称作为参数传递给处理程序。
语句
<button {{action "link text" post}}>Click</button>
例子
<!DOCTYPE html> <html> <head> <title>Emberjs Action Parameter</title> <!-- CDN's --> <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script> <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script> <script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script> <script src="https://builds.emberjs.com/release/ember.debug.js"></script> <script src="https://builds.emberjs.com/beta/ember-data.js"></script> </head> <body> <script type="text/x-handlebars"> {{outlet}} </script> <script type="text/x-handlebars" data-template-name="index"> <!-- passing the 'user' as parameter to a button --> <button {{action "User" user}}>Click Here </button> </script> <script type="text/javascript"> App = Ember.Application.create() App.IndexRoute = Ember.Route.extend({ actions: { //passing the 'user' as parameter to the User function User: function(user) { document.write('Welcome.. To Tutorialspoint'); } } }); </script> </body> </html>
输出
让我们执行以下步骤,看看上面的代码如何工作:
将上面的代码保存在temp_act_param.html文件中
在浏览器中打开此HTML文件。
以上内容是否对您有帮助:
更多建议: