ฉันสร้างแบบฟอร์มการกำหนดค่า เพื่อให้ฉันสามารถตั้งค่าคีย์ API แบบไดนามิกสำหรับโมดูลสภาพอากาศที่กำหนดเองของฉัน
แต่เมื่อฉันเขียนที่อยู่ url http://drupalsite/admin/config/services/weather/settings
ฉันได้รับข้อผิดพลาด:
InvalidArgumentException: ไม่มีคลาส "\Drupal\weather\Form\WeatherSettingsForm" ใน Drupal\Core\DependencyInjection\ClassResolver->getInstanceFromDefinition() (บรรทัดที่ 24 ของ core/lib/Drupal/Core/DependencyInjection/ClassResolver.php)
ฉันตรวจสอบชื่อคลาสและชื่อไฟล์และล้างแคชแล้ว แต่ข้อผิดพลาดไม่หายไป
จะแก้ไขได้อย่างไร?
weather.routing.yml
weather.weather_page:
เส้นทาง: '/weather/{city}'
ค่าเริ่มต้น:
_controller: '\Drupal\weather\Controller\WeatherPage::getWeather'
ความต้องการ:
_permission: 'เข้าถึงเนื้อหา'
สภาพอากาศการตั้งค่า:
เส้นทาง: '/admin/config/services/weather/settings'
ค่าเริ่มต้น:
_form: '\Drupal\weather\Form\WeatherSettingsForm'
_title: 'แบบฟอร์มการตั้งค่าสภาพอากาศ'
ความต้องการ:
_permission: 'จัดการการกำหนดค่าไซต์'
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);
}
}
?>