Ember.js的set()方法有助于在調(diào)用計(jì)算屬性時(shí)動(dòng)態(tài)更新計(jì)算屬性。
ClassName.set('VariableName', 'UpdatedValue');
<!DOCTYPE html> <html> <head> <title>Emberjs Dynamic Updating</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/javascript"> App = Ember.Application.create(); App.Person = Ember.Object.extend({ firstName: null, lastName: null, age: null, mobno: null, //defining the 'Details' as computed property fucntion Person: function(){ return this.get('firstName') + ' ' + this.get('lastName'); }.property('firstName', 'lastName'), //defining the 'Details' as computed property fucntion Details: function() { return 'Name: '+this.get('Person') + ' Age: ' + this.get('age') + ' Mob No: ' + this.get('mobno'); }.property('Person', 'age', 'mbno') }); //initializing the Person details var emp = App.Person.create({ //Dynamically Updating the properties firstName: 'Manu', lastName: 'DK', age: 24, mobno:'8792227920' }); //setting the updated value for 'firstName' emp.set('firstName', 'Jhon'); document.write("Details of employee: "+emp.get('Details'));//dynamically updated values </script> </body> </html>
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的代碼保存在obj_dynm_cmp.html文件中
在瀏覽器中打開此HTML文件。
更多建議: