我可以描述我的问题所在,但是我发现有人经历过完全相同的事情,但是问题已经解决,here。很简单,我有一个带有链接的视图A,当用户单击它时,它应该转到视图B(这是一个带电部件)。我真的不知道它是否重要,但是,我正在使用一个管理包this one。
web.php
# the new value for the `value attribute`
$NewModelInput = "{'info':'999','horlgto':'888','horlgtb':'777'}"
$SelectItem = $SelectXML.SelectSingleNode("//parameters/parameter[@name='modelInputParameters']")
# update the value attribute for this node
$SelectItem.SetAttribute("value", $NewModelInput)
刀片
Route::livewire('/kdms/novo','kdms.novo')->layout('adminlte::page');
组件类/控制器另外,我在使用子文件夹,文件也不直接位于livewire文件夹内
@extends('adminlte::page')
@section('content')
<div>all my code</div>
@endSection