具有对话流

时间:2018-06-08 14:04:56

标签: css angular user-interface ionic-framework dialogflow

每当我向对话框流发送消息或从屏幕左侧出现的对话框流中接收消息时,我都创建了一个聊天界面。我希望我的信息在右侧和对话框流程信息在左侧&两个聊天气泡都应该有不同的颜色。我不知道如何区分它们。有人能帮我吗? 这是我的HTML代码。

<ion-content>
  <div style="font-size:10px; text-align:center;">7 minutes ago</div>
  <div class="msgbubble" *ngFor="let msg of messages">
    <div class="innermsg">
      {{ msg }}
    </div>
  </div>
</ion-content>

<ion-footer>
  <ion-toolbar>
    <ion-input placeholder="Type here" [(ngModel)]="question" type="text"></ion-input>
    <ion-buttons right>
      <button ion-button clear icon-only id="sendicon" (click)="ask(question)">
        <ion-icon name="send"></ion-icon>
      </button>
    </ion-buttons>
  </ion-toolbar>
</ion-footer>

这是ts代码。

ask(question) {
    try {
      this.messages.push(question);
      var headers = new Headers();
      headers.append("Accept", 'application/json');
      headers.append('Content-Type', 'application/json' );
      headers.append('Authorization', 'Bearer ' + this.Access_token)
      let options = new RequestOptions({ headers: headers });

      let postParams = {
       "lang": "en",
      "query": question ,
      "sessionId": "12345",
      "timezone": "America/New_York"
      }

      try{
      this.http.post("https://api.dialogflow.com/v1/query?v=20150910", postParams, options)
        .subscribe(data => {
          let obj = JSON.parse(data['_body']);
          this.answer = obj.result.fulfillment.speech;
          //console.log(data['_body']);
          console.log(this.answer);
          this.messages.push(this.answer);

         }, error => {
          console.log(error);// Error getting the data
        });
    }
    catch(e){
      console.log(e);
    }
    }

  catch(e){
    console.log(e);
  }
  }

我希望UI应该是一般的聊天页面/机器人。正确发送消息&amp;在左边接收消息。

1 个答案:

答案 0 :(得分:0)

数组“ messages”中的对象需要具有一个属性,以指示消息是问题还是答案(如果您将“ message”的接口添加到问题中,那将是很好的选择)。 在角度,您可以按以下条件更改css类:

<div [className]="condition ? 'example-class' : 'other-class'"></div>

希望能解决您的问题!