忽略 nopcommerce 中语言字符串的提示
Ignoring the hint for a language string in nopcommerce
所以在我的模型中的 nopcommerce 中,我有这样的东西:
[NopResourceDisplayName("Admin.Catalog.Products.SpecificationAttributes.Fields.Verified")]
public bool? Verified { get; set; }
在我的日志中,它给了我这样的警告:
Resource string (admin.catalog.products.specificationattributes.fields.verified.hint) is not found. Language ID = 1
我该如何忽略提示?
我尝试添加一个空白资源字符串 > admin.catalog.products.specificationattributes.fields.verified.hint
但它告诉我它必须有一个值。
我认为这一定很简单,但在 google.
上找不到任何东西
谢谢
好的,事实证明,如果您在日志中看到该错误,那是因为在管理面板中使用了资源显示名称,我实际上认为不是。
所以我只是把一些东西放在那里作为提示值。
admin.catalog.products.specificationattributes.fields.verified.hint "Has the product been verified, if so tick this box"
根据我的研究,我认为隐藏提示值是不可能的。
所以在我的模型中的 nopcommerce 中,我有这样的东西:
[NopResourceDisplayName("Admin.Catalog.Products.SpecificationAttributes.Fields.Verified")]
public bool? Verified { get; set; }
在我的日志中,它给了我这样的警告:
Resource string (admin.catalog.products.specificationattributes.fields.verified.hint) is not found. Language ID = 1
我该如何忽略提示? 我尝试添加一个空白资源字符串 > admin.catalog.products.specificationattributes.fields.verified.hint 但它告诉我它必须有一个值。 我认为这一定很简单,但在 google.
上找不到任何东西谢谢
好的,事实证明,如果您在日志中看到该错误,那是因为在管理面板中使用了资源显示名称,我实际上认为不是。 所以我只是把一些东西放在那里作为提示值。
admin.catalog.products.specificationattributes.fields.verified.hint "Has the product been verified, if so tick this box"
根据我的研究,我认为隐藏提示值是不可能的。