我有一个angular2应用程序,其服务是对服务器api进行Http调用。如何在不使用react2或不使用角度组件的情况下使用react.js的不同应用程序中调用这些服务。
App1(angular2) -> component1 -> SharedService1(say http api client)
^
|(call service from react to get data)
App2(react) -> React Component
答案 0 :(得分:1)
只需使用public void testPrintHelper(Bitmap bmA) {
PrintHelper printHelper = new PrintHelper(this);
printHelper.setScaleMode(PrintHelper.SCALE_MODE_FIT);
printHelper.setColorMode(PrintHelper.COLOR_MODE_MONOCHROME);
printHelper.printBitmap("OrderName", bmA, new OnPrintFinishCallback() {
@Override
public void onFinish() {
// TODO Auto-generated method stub
}
});
}
创建一个新的注射器并从中获取HTTP_PROVIDERS
,如:
Http