suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - 这个链接路径怎么编???

怎么点击a标签,生成这样的链接,
例如,这篇文章是2016年8月15号写的,
怎么用这个作为这篇文章的链接

習慣沉默習慣沉默2797 Tage vor546

Antworte allen(1)Ich werde antworten

  • phpcn_u1582

    phpcn_u15822017-05-15 17:09:27

    //router
    
        "/article/:year/:month/:day/detail" : {
            name: "articleDetail",
            component: require('')
        },
        
        <a v-link="{ name: 'articleDetail' ,params: { year: '2016', month:'10', day:'04' }}">  </a>
    
    

    Antwort
    0
  • StornierenAntwort