表单编码方法必须至少包含一个@Field

问题描述 投票:0回答:3

我无法理解这里的问题是什么: 是库的问题吗?

java.lang.IllegalArgumentException:表单编码方法必须包含 至少一个@Field。 对于方法 ApiInterface.hitCheckVersionApi$79c79d47 在改造2.ServiceMethod$Builder.methodError(ServiceMethod.java:720) 在改造2.ServiceMethod$Builder.build(ServiceMethod.java:11711) 在retrofit2.Retrofit.loadServiceMethod(Retrofit.java:166) 在retrofit2.Retrofit$1.invoke(Retrofit.java:145) 在 java.lang.reflect.Proxy.invoke(Proxy.java:1006) 在 $Proxy3.hitCheckVersionApi$79c79d47(来源未知) 在 com.shopoholicbuddy.activities.SplashActivity.onCreate(SplashActivity.java:1058)

这里是代码示例:

  @FormUrlEncoded
    @POST("checkversion")
    Call<ResponseBody> hitCheckVersionApi(@FieldMap HashMap<String, String> map);

实现代码为:

 private void checkForceUpdateAPI() {
        if (AppUtils.getInstance().isInternetAvailable(this)) {
            final HashMap<String, String> params = new HashMap<>();
            params.put(Constants.NetworkConstant.PARAM_VERSION_NAME, getAppVersion(this));
            params.put(Constants.NetworkConstant.PARAM_PLATFORM, "1");
            params.put(Constants.NetworkConstant.PARAM_APP_TYPE, "2");
            ApiInterface apiInterface = RestApi.createService(this, ApiInterface.class);
            Call<ResponseBody> call = apiInterface.hitCheckVersionApi(params);
            ApiCall.getInstance().hitService(this, call, new NetworkListener() {
                @Override
                public void onSuccess(int responseCode, String response, int requestCode) {
                    try {
                        VersionUpdateResponse bean = new Gson().fromJson(response, VersionUpdateResponse.class);
                        if (bean.getCode() == 310) {
                            if (bean.getResult().getVersionName() != null && Double.parseDouble(bean.getResult().getVersionName())<=(Double.parseDouble(getAppVersion(SplashActivity.this)))) {
                                showSplashScreen();
                            } else {
                                AlertDialog.Builder builder = new AlertDialog.Builder(SplashActivity.this, R.style.DatePickerTheme);
                                builder.setTitle(getString(R.string.new_version_available));
                                builder.setMessage(getString(R.string.upgrade_to_new_version));
                                builder.setPositiveButton(getString(R.string.update), (dialogInterface, i) -> redirectStore("https://play.google.com/store/apps/details?id=com.shopoholic"));
                                if (bean.getResult().getUpdateType() != null && bean.getResult().getUpdateType().equals("1")) {
                                    builder.setNegativeButton(getString(R.string.no_thanks), (dialogInterface, i) -> showSplashScreen());
                                }
                                builder.setCancelable(false);
                                builder.show();
                            }
                        } else {
                            showSplashScreen();
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                        showSplashScreen();
                    }

                }
android retrofit
3个回答
1
投票

我在 RELEASE 构建中遇到了同样的问题。添加 proguard 规则即可解决该问题。 https://github.com/square/retrofit/blob/master/retrofit/src/main/resources/META-INF/proguard/retrofit2.pro 如果您在 DEBUG 构建中遇到此错误,则说明您的代码有问题。


0
投票

这个错误也可能意味着,在这篇文章的情况下,您正在使用 @FormUrlEncoded 而没有 @Field,如下所示:

@FormUrlEncoded
@GET("item")
suspend fun getItems(): Response<MutableList<Item>>

所以删除@FormUrlEncoded


0
投票

😕 昨天,我的 Android 项目也遇到了同样的问题。 🥳但是好消息是问题已经解决了。

我用新版本支持升级了我的项目。但我无法升级 Retrofit 库。

  • 更新您的改造库。
  • 可选 - 有时也需要minifyEnable false(在应用程序级别的gradle文件中)。如果你想设置 true 那么你需要编写 proguard 规则。

Android - LinkedIn

© www.soinside.com 2019 - 2024. All rights reserved.