这个PHP语法在外行人的术语中意味着什么?

时间:2017-04-17 01:24:53

标签: php laravel routes

我试图理解一种语法,如果有人能够说出这在外行人的术语中意味着什么,我将不胜感激:

  

路由:: get(' / member-profile-form',[' as' =>' newmemberprofileform','使用' ; =>' User \ MemberProfileFormController @ showForm']);

特别是那个说'为...... 谢谢!

1 个答案:

答案 0 :(得分:3)

此处get()Route类的方法,您使用2个参数调用它。第一个是URI,第二个是array,其中有2个索引。

这里,

as用于为URI提供名称,表示其为named route

uses定义Controller函数,此URI服务于此get,此处有as个请求。

根据您的问题专栏特别是那个用'作为' 的那个用于制作命名路线。

注意:使用function appendText() { var txt1 = "<p>Text.</p>"; // Create element with HTML var txt2 = $("<p></p>").text("Text."); // Create with jQuery var txt3 = document.createElement("p"); // Create with DOM txt3.innerHTML = "Text."; $("body").append(txt1, txt2, txt3); // Append the new elements } 选项为您的路线指定名称,可让您轻松地在应用的其他部分引用该路线。谢谢@Jamesgarrett提醒我这件事。

Named Route Reference