我正在尝试在Android代码中执行webview.postUrl
它会自动在标题中添加Origin:null
如何防止这种情况?
我的代码
import butterknife.Bind;
.....
@Bind(R.id.webview)
WebView webview;
....
....
protected final void loadUrl(String url) {
webview.postUrl("http://localhost:8080/myapp/login", mypostdata);
}