0

非コマースV2.6を使用しています。そこで、管理パネルに新製品を追加してみます。すべてのデータを入力し、[保存]ボタンをクリックするか、[保存して編集を続行]ボタンをクリックします。

私はこのようなエラーがあります。

    Object reference not set to an instance of an object.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

    Source Error:



Line 546:                //default product variant
Line 547:                var variant = model.FirstProductVariantModel.ToEntity();             
Line 548:                variant.ProductId = product.Id;
Line 549:                variant.Published = true;
Line 550:                variant.DisplayOrder = 1;

私のコードは以下にありますが、エラーがあります。

var variant = model.FirstProductVariantModel.ToEntity();             
                variant.ProductId = product.Id;
                variant.Published = true;
                variant.DisplayOrder = 1;
                variant.CreatedOnUtc = DateTime.UtcNow;
                variant.UpdatedOnUtc = DateTime.UtcNow;
                _productService.InsertProductVariant(variant);
                FirstVariant_UpdateLocales(variant, model.FirstProductVariantModel);

どうすればそれを愛することができますか。

Plzヘルプ...Thankx

4

1 に答える 1

1

その製品については、 [デフォルトの製品バリエーション情報] タブ の下に 1 つの製品バリエーションを追加する必要があります

于 2012-09-14T14:47:58.730 に答える