我注意到在执行服务器调用时发生了以下情况,这里有什么问题!
getItems(){
print('getItems');
request = new HttpRequest();
request.onReadyStateChange.listen(onData_getItems);
request.open('POST', host+'/getItems');
request.send(' ');
}
onData_getItems(_){
print('call'); // --> printed 4 times!!
if (request.readyState == HttpRequest.DONE && request.status == 200) {
print('Data loaded successfully..';
print(request.responseText); // --> printed 1 time!!
for(Map item in JSON.decode(request.responseText)){
LineItem..children.add(new OptionElement(value: item['Code'], data: item['Name']));
}
}
else if (request.readyState == HttpRequest.DONE &&
request.status == 0) {
print("could not connect to server, contact your admin");
}
else print('something else'); // --> printed 3 times
}
以上是在我的自定义元素中执行的:
class getPurchaseLines extends HtmlElement {
static final tag = 'get-POlines';
factory getPurchaseLines() => new Element.tag(tag);
var shadow, LineItem, LineQty, Lineprice, clsBtn;
getPurchaseLines.created() : super.created() {
shadow = this.createShadowRoot();
LineItem = new SelectElement()
..children.add(new OptionElement(value: '0', data:'Stock Code'));
LineQty = new InputElement()..type='number'..placeholder='Qty'..style.width='50px';
Lineprice = new InputElement()..type='number'..placeholder='price'..style.width='50px';
LineQty.onKeyUp.listen((e){if(LineQty.checkValidity() == false)LineQty.value='0';});
Lineprice.onKeyUp.listen((e){if(Lineprice.checkValidity() == false)Lineprice.value='0';});
shadow.host
..style.position='relative'
..style.display='inline-block'
..style.verticalAlign = 'top'
..style.backgroundColor = '#ffffff'
..style.boxShadow = '1px 1px 5px #333333'
..style.boxSizing = 'border-box'
..style.marginTop='2px'
..style.padding = '4px'
..style.paddingRight='30px'
..style.borderRadius='2px'
..style.fontSize='14px'
..style.transition = 'all 0.2s ease-in';
clsBtn
..onClick.listen((e)=> this.remove())
..style.position='absolute'
..style.right = '5px'
..style.top = '5px'
..style.color = 'black'
..style.cursor = 'pointer'
..style.zIndex = '1'
..style.fontSize = '16px'
..style.fontWeight = 'solid'
..classes.add('ion-close-circled')
..text='x'
;
shadow.nodes..add(LineItem)..add(LineQty)..add(Lineprice)..add(clsBtn);
}
在我的函数中调用如下:
Future fonixFuture() => new Future.value(true);
for (var line in orderLines){
fonixFuture()
.then((_)=> LineDisplay = new getPurchaseLines())
.then((_)=> LineDisplay.getItems())
.then((_)=> this.parent.nodes.add(LineDisplay))
.then((_)=>print(this.parent.nodes));
}
只有最后一个元素 (LineDisplay) 显示正确的 getItem() 结果。例如,如果我有 4 行,则 LineDisplay 是:
- 在咨询中打印了 16 次“呼叫”
- 在浏览器中显示元素 LineDisplay 4 次
- 前 3 个“LineDisplay”中的项目字段为空,而最后一个显示正确执行的项目。
附上问题说明。
更新
收到答复后,4 个响应的问题已得到修复,但仍然仅在最后一个元素中收到输出!更新后的代码是:
return Future.forEach(orderLines, (ol) {
return fonixFuture()
.then((_)=>print(ol))
.then((_)=> LineDisplay = new getPurchaseLines())
.then((_)=> LineDisplay..getItems())
.then((_)=> this.parent.nodes.add(LineDisplay))
.then((_)=>print(this.parent.nodes));
});
自定义元素是:
part of fonix_client_library;
class getPurchaseLines extends HtmlElement {
static final tag = 'get-POlines';
factory getPurchaseLines() => new Element.tag(tag);
var shadow, LineItem, LineQty, Lineprice;
getPurchaseLines.created() : super.created() {
shadow = this.createShadowRoot();
LineItem = new SelectElement()
..children.add(new OptionElement(value: '0', data:'Stock Code'));
LineQty = new InputElement()..type='number'..placeholder='Qty'..style.width='50px';
Lineprice = new InputElement()..type='number'..placeholder='price'..style.width='50px';
LineQty.onKeyUp.listen((e){if(LineQty.checkValidity() == false)LineQty.value='0';});
Lineprice.onKeyUp.listen((e){if(Lineprice.checkValidity() == false)Lineprice.value='0';});
shadow.host
..style.position='relative'
..style.display='inline-block'
..style.verticalAlign = 'top'
..style.backgroundColor = '#ffffff'
..style.boxShadow = '1px 1px 5px #333333'
..style.boxSizing = 'border-box'
..style.marginTop='2px'
..style.padding = '4px'
..style.paddingRight='30px'
..style.borderRadius='2px'
..style.fontSize='14px'
..style.transition = 'all 0.2s ease-in';
shadow.nodes..add(LineItem)..add(LineQty)..add(Lineprice);
}
getItems(){
print('getItems');
request = new HttpRequest();
request.onReadyStateChange.listen(onData_getItems);
request.open('POST', host+'/getItems');
request.send(' ');
}
onData_getItems(_){
if (request.readyState != HttpRequest.DONE) return;
else
print('responce recieved..: ${request.responseText}');
if (request.readyState == HttpRequest.DONE && request.status == 200) {
fonixFooter.innerHtml='Items retreived..';
print('responce after checking ifItemsretrieved..: ${request.responseText}');
for(Map item in JSON.decode(request.responseText)){
LineItem..children.add(new OptionElement(value: item['Code'], data: item['Name']));
}
}
else if (request.readyState == HttpRequest.DONE &&
request.status == 0) {
print('no server..');
}
}
}
第二个屏幕截图显示更新的输出