zoukankan      html  css  js  c++  java
  • Struts的一些关键词

    jsp,
    actionForm,
    action

    --------------

    jsp:
    Code
    action="/twoTitl" 对应了struts.xml 里path="/twoTitle"
    <input type="hidden" value="addTitle" name="modth"/>
    value="addTitle" 对应了Action的addTitle方法,name="modth"对应了struts.xml里的parameter="modth"
    property="twoTitle" 对应了formBean的属性

    Code


    一个form 对应了一个表单,


    Code

    <action 
            
    attribute="twoTitleForm"
            input
    ="/CreateTwoTitle.jsp"
            name
    ="twoForm"
            path
    ="/twoTitle"
            parameter
    ="modth"
            scope
    ="request"
            type
    ="web.action.TwoTitleAction"
        
        
    />

  • 相关阅读:
    Scratch-Blockly配置过程
    Scratch www 系统搭建
    Scratch3.0——项目层次结构
    用canvas播放scratch文件
    Scratch3.0——克隆代码仓库的正确姿势
    Scratch3.0——作品截图
    Scratch GUI
    Ubuntu下Visual Studio Code的配置
    关于Ubuntu16.04下phpmyadmin出现mbstring错误的正解
    ubuntu搭建LAMP全教程及简单使用
  • 原文地址:https://www.cnblogs.com/bayker/p/1546043.html
Copyright © 2011-2022 走看看