Dart新手。
我正在开发一个模拟遗产Guess Animal程序的简单Dart程序:用户想到一只动物,程序试图通过询问Y / N问题猜测它。
我使用Symfony开发了我的后端和一些简单的RESTful接口,它在浏览器中运行良好。我现在正在使用Dart来开发前端。代码如下所示。
现象:
任何提示?
RGDS!
泰勒
import 'dart:html';
import 'dart:convert';
int questionId;
int yBranch;
int nBranch;
void main()
{
init();
}
void init()
{
// Hook up event handlers
querySelector("#btnNew").onClick.listen(newGame);
querySelector('#y').onClick.listen(getYBranch);
querySelector('#n').onClick.listen(getNBranch);
}
void getYBranch(Event e)
{
getNextQuestion(yBranch);
}
void getNBranch(Event e)
{
getNextQuestion(nBranch);
}
void newGame(Event e)
{
questionId=1;
yBranch=-1;
nBranch=-1;
querySelector("#lblProgress").text="Game in progress...";
querySelector('#gamearea').style.display="block";
querySelector('#answerlinks').style.display="block";
//Get Root Question
getNextQuestion(questionId);
}
String getNextQuestion(questionId)
{
var path='http://rsywx/app_dev.php/animal/getQuestionByID/$questionId';
var req=new HttpRequest();
req..open('GET', path)..onLoadEnd.listen((e)=>getNextQuestionComplete(req, questionId))..send('');
}
void getNextQuestionComplete(HttpRequest req, qid)
{
if(req.status==200)
{
Map res=JSON.decode(req.responseText);
querySelector('#question').innerHtml=res['q'];
querySelector('#qid').innerHtml=qid.toString();
yBranch=res['y'];
nBranch=res['n'];
}
req=null;
}