使用AngularDart中的其他自定义数据重定向到Url

时间:2017-08-31 08:23:10

标签: dart url-redirection angular-dart dart-html

填充名称列表,点击该名称后重定向到谷歌搜索。我需要帮助,通过html将自定义填充数据name添加到网址,该网址会根据Google搜索的自动搜索结果重定向访问者。

app_component.html

     <h1>{{title}}</h1>

    <h2>My favorite hero is: {{myHero.name}}</h2>

    <p>Heroes:</p>

    <ul>

       <li *ngFor="let hero of heroes">

             <a href="https://www.google.co.in/search?q=">{{ hero.name }}</a>

       </li>

    </ul>

app_component.dart

     import 'package:angular2/angular2.dart';
     import 'src/hero.dart';


   @Component(
      selector: 'my-app', 
      template: '''app_component.html''', 

      directives: const [CORE_DIRECTIVES], )

      class AppComponent {
            String title = 'Tour of Heroes';
            List<Hero> heroes = [
              new Hero(1, 'Windstorm'),
              new Hero(13, 'Bombasto'),
              new Hero(15, 'Magneta'),
              new Hero(20, 'Tornado')
      ];
      Hero get myHero => heroes.first;
     }

1 个答案:

答案 0 :(得分:1)

将数据绑定到HTML的方式相同,您可以将其绑定到HTML属性,例如。这应该有效。

<a href="https://www.google.co.in/search?q={{ hero.name }}">{{ hero.name }}</a>

顺便说一句,您应该考虑将target="_blank"属性添加到链接中,这样用户就可以在新标签页中打开搜索结果,您的应用仍会继续播放。