Tôi tạo biểu mẫu cấu hình để tôi có thể tự động đặt khóa API cho mô-đun thời tiết tùy chỉnh của mình.
Nhưng khi tôi viết địa chỉ url http://drupalsite/admin/config/services/weather/settings
tôi nhận được lỗi:
UnlimitedArgumentException: Lớp "\Drupal\weather\Form\WeatherSettingsForm" không tồn tại. trong Drupal\Core\DependencyInjection\ClassResolver->getInstanceFromDefinition() (dòng 24 của core/lib/Drupal/Core/DependencyInjection/ClassResolver.php).
Tôi đã kiểm tra Tên lớp và Tên tệp và xóa bộ nhớ cache nhưng lỗi không biến mất.
Làm thế nào để sửa chữa nó?
thời tiết.routing.yml
thời tiết.weather_page:
đường dẫn: '/thời tiết/{thành phố}'
mặc định:
_controller: '\Drupal\weather\Controller\WeatherPage::getWeather'
yêu cầu:
_permission: 'truy cập nội dung'
thời tiết.settings:
đường dẫn: '/admin/config/services/thời tiết/cài đặt'
mặc định:
_form: '\Drupal\weather\Form\WeatherSettingsForm'
_title: 'Biểu mẫu cài đặt thời tiết'
yêu cầu:
_permission: 'quản lý cấu hình trang web'
WeatherSettingsForm.php
<?php
namespace Drupal\weather\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configure example settings for this site.
*/
class WeatherSettingsForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'weather_admin_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'weather.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('weather.settings');
$form['weather_api_key'] = array(
'#type' => 'textfield',
'#title' => $this->t('API Key'),
'#default_value' => $config->get('weather_api_key'),
);
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->configFactory->getEditable('weather.settings')
->set('weather_api_key', $form_state->getValue('weather_api_key'))
->save();
parent::submitForm($form, $form_state);
}
}
?>