我使用asp.net核心1.1,遇到一些用户无法获取更新数据的奇怪情况。
Thread timer = new Thread() {
@Override
public void run() {
super.run();
try {
Thread.sleep(2200);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
Intent mainIntent = new Intent(SpalshScreenActivity.this, MainActivity.class);
startActivity(mainIntent);
finish();
}
}
};
timer.start();
正确的流程是客户必须先获得基金更新,然后再发送更新订单。根据我自己的测试,它在本地和网站上运行良好。但不知何故,一些用户显然没有得到正确的值。
我做的方式有什么问题吗?非常感谢。