Application and difference between conpile and link in angular JS

Source: Internet
Author: User

The link method is a way for compile to throw out

Application

App.directive ("ThumbNail", function () {
return{
Restrict: "ACE",
Replace:true,
Templateurl: ". /tpl/tpl.html ",
Compile:function (elem,attrs,transclude) {
Dom Dom tree additions and deletions (at this point the DOM tree has not yet formed)
Console.log ("compile phase"); Print only once only once
return{
Pre:function (Scope,elem,attrs,controller) {
            Equivalent to the  Post-link method


Console.log ("compile Phase 1")
                },
Post:function (Scope,elem,attrs,controller) {//equals Post-link method
Console.log ("link Stage")//Bind event with data (DOM tree formed) Each instance is executed once
}

}
}
/*link:function (scope,elem,attrs) {
Console.log (Elem);
Angular.element (Elem). Find ("a"). EQ (0). On ("click", Function () {
Alert ("Add to Favorites")
});
Angular.element (Elem). Find ("a"). EQ (1). On ("click", Function () {
Alert ("Click to buy")
})
}*/
}
});

Application and difference between conpile and link in angular JS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.