简体   繁体   中英

How I can get the vaule @sys-time in IBM Watson Assistant (Conversation)?

How I can get the value of time? This is my code but I can't see the time

{
  "context": {
    "time": "@sys-time"
  },
  "output": {
    "text": {
      "values": [
        "Is $time"
      ]
    }
  }
}

You need to use the evaluation syntax :

{
  "context": {
    "time": "<? @sys-time ?>"
  },
  "output": {
    "text": {
      "values": [
        "Is $time"
      ]
    }
  }
}

You need to also make sure, that in the dialog something with time is mentioned. sys-time does not have the system time, but user input related to time.

I have several examples collected in this GitHub repository .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM