मेरे MVC फॉर्म में दो बटन हैं:
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />
मेरे नियंत्रक कार्रवाई से मुझे कैसे पता चलेगा कि कौन सा दबाया गया है?
मेरे MVC फॉर्म में दो बटन हैं:
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />
मेरे नियंत्रक कार्रवाई से मुझे कैसे पता चलेगा कि कौन सा दबाया गया है?
जवाबों:
अपने दोनों सबमिट बटन को एक ही नाम दें
<input name="submit" type="submit" id="submit" value="Save" />
<input name="submit" type="submit" id="process" value="Process" />
फिर अपने कंट्रोलर में सबमिट का मूल्य प्राप्त करें। केवल क्लिक किया गया बटन ही उसका मूल्य पार करेगा।
public ActionResult Index(string submit)
{
Response.Write(submit);
return View();
}
आप निश्चित रूप से एक स्विच ब्लॉक के साथ विभिन्न कार्यों को करने के लिए उस मूल्य का आकलन कर सकते हैं।
public ActionResult Index(string submit)
{
switch (submit)
{
case "Save":
// Do something
break;
case "Process":
// Do something
break;
default:
throw new Exception();
break;
}
return View();
}
<button type="submit" name="action" value="draft"> Internationalized Save Text </button>
i18n प्रयोजनों के लिए उपयोग नहीं कर सकते हैं, इसलिए स्ट्रिंग का सामना कर रहे उपयोगकर्ता अनुकूलन योग्य है, और फार्म तत्व नाम सीधे उपयोगकर्ता के लिए कभी भी उजागर नहीं होते हैं (जो कि अपने आप में अजीब है)
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />
और आपके नियंत्रक क्रिया में:
public ActionResult SomeAction(string submit)
{
if (!string.IsNullOrEmpty(submit))
{
// Save was pressed
}
else
{
// Process was pressed
}
}
यह एक बेहतर उत्तर है, इसलिए हमारे पास एक बटन के लिए पाठ और मूल्य दोनों हो सकते हैं:
</p>
<button name="button" value="register">Register</button>
<button name="button" value="cancel">Cancel</button>
</p>
और नियंत्रक:
public ActionResult Register(string button, string userName, string email, string password, string confirmPassword)
{
if (button == "cancel")
return RedirectToAction("Index", "Home");
...
संक्षेप में इसके SUBMIT बटन पर आप नाम की विशेषता का उपयोग करते हुए नाम चुनते हैं, तो यह और भी अधिक शक्तिशाली है क्योंकि आपका नाम नियंत्रक विधि के मापदंडों में सबमिट या बटन के लिए बाध्य नहीं है, आप इसे अपनी इच्छानुसार कॉल कर सकते हैं ...
आप नीचे दिए गए नाम टैग की तरह अपने बटन को पहचान सकते हैं, आपको इस तरह की जांच करने की आवश्यकता है
if (Request.Form["submit"] != null)
{
//Write your code here
}
else if (Request.Form["process"] != null)
{
//Write your code here
}
यहां कस्टम मल्टीबटन एट्रिब्यूट का उपयोग करके निर्देशों का पालन करना वास्तव में आसान होने का एक अच्छा और सरल तरीका है:
संक्षेप में, इस तरह से अपने सबमिट बटन बनाएं:
<input type="submit" value="Cancel" name="action" />
<input type="submit" value="Create" name="action" />
इस तरह आपके कार्य:
[HttpPost]
[MultiButton(MatchFormKey="action", MatchFormValue="Cancel")]
public ActionResult Cancel()
{
return Content("Cancel clicked");
}
[HttpPost]
[MultiButton(MatchFormKey = "action", MatchFormValue = "Create")]
public ActionResult Create(Person person)
{
return Content("Create clicked");
}
और इस वर्ग का निर्माण करें:
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class MultiButtonAttribute : ActionNameSelectorAttribute
{
public string MatchFormKey { get; set; }
public string MatchFormValue { get; set; }
public override bool IsValidName(ControllerContext controllerContext, string actionName, MethodInfo methodInfo)
{
return controllerContext.HttpContext.Request[MatchFormKey] != null &&
controllerContext.HttpContext.Request[MatchFormKey] == MatchFormValue;
}
}
MultiButtonAttribute
सबमिट बटन के बीच अंतर करने की अनुमति देने के लिए एक कस्टम विशेषता रखने की वकालत करता है । वास्तव में एक अच्छा विचार है।
Arnis L.
आपने उसी सलाह का पालन किया है, तो आपने देखा होगा कि उसने ठीक उसी लिंक को 4 साल पहले प्रदान किया था:
// Buttons
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />
// Controller
[HttpPost]
public ActionResult index(FormCollection collection)
{
string submitType = "unknown";
if(collection["submit"] != null)
{
submitType = "submit";
}
else if (collection["process"] != null)
{
submitType = "process";
}
} // End of the index method
इसे आसान बनाने के लिए मैं कहूंगा कि आप अपने बटन को निम्न में बदल सकते हैं:
<input name="btnSubmit" type="submit" value="Save" />
<input name="btnProcess" type="submit" value="Process" />
आपका नियंत्रक:
public ActionResult Create(string btnSubmit, string btnProcess)
{
if(btnSubmit != null)
// do something for the Button btnSubmit
else
// do something for the Button btnProcess
}
यह पोस्ट कॉपरमिल के लिए जवाब देने वाली नहीं है, क्योंकि उनका जवाब बहुत पहले दिया जा चुका है। मेरी पोस्ट इस तरह के समाधान के लिए कौन मददगार होगा। सबसे पहले, मुझे कहना होगा कि "डब्ल्यूडीएफ का समाधान पूरी तरह से सही है" और यह ठीक काम करता है, लेकिन मेरा समाधान (वास्तव में मेरा नहीं) अन्य तत्वों में उपयोग किया जाएगा और यह प्रस्तुति परत को नियंत्रक से अधिक स्वतंत्र बनाता है (क्योंकि आपका नियंत्रक निर्भर करता है "मान" जिसका उपयोग बटन के लेबल को दिखाने के लिए किया जाता है, यह सुविधा अन्य भाषाओं के लिए महत्वपूर्ण है।)
यहाँ मेरा समाधान है, उन्हें अलग-अलग नाम दें:
<input type="submit" name="buttonSave" value="Save"/>
<input type="submit" name="buttonProcess" value="Process"/>
<input type="submit" name="buttonCancel" value="Cancel"/>
और आपको नीचे दिए गए कार्यों में तर्क के रूप में बटन के नाम निर्दिष्ट करने होंगे:
public ActionResult Register(string buttonSave, string buttonProcess, string buttonCancel)
{
if (buttonSave!= null)
{
//save is pressed
}
if (buttonProcess!= null)
{
//Process is pressed
}
if (buttonCancel!= null)
{
//Cancel is pressed
}
}
जब उपयोगकर्ता किसी एक बटन का उपयोग करके पृष्ठ को सबमिट करता है, तो केवल एक तर्क का मूल्य होगा। मुझे लगता है कि यह दूसरों के लिए मददगार होगा।
अपडेट करें
यह उत्तर काफी पुराना है और मैं वास्तव में अपनी राय पर पुनर्विचार करता हूं। शायद उपरोक्त समाधान उस स्थिति के लिए अच्छा है जो मॉडल के गुणों के लिए पैरामीटर पारित कर रहा है। अपने आप को परेशान मत करो और अपनी परियोजना के लिए सबसे अच्छा समाधान ले लो।
input[type=submit]
मान वापस करेगा जो ट्रिगर किया गया था, इसलिए वे सभी मॉडल को उसी name
(पूर्व action
) के साथ एक संपत्ति से बांध सकते हैं और फिर आप value
उस स्ट्रिंग के आधार पर बटन को अलग कर सकते हैं जो आपके हस्ताक्षर में कई चर पेश करने की आवश्यकता के बिना। । कृपया पोस्ट करने से पहले फॉर्मेटिंग / इंडेंटेशन के बारे में सोचने के लिए कुछ समय लें।
दोनों बटनों को नाम दें और फॉर्म से चेक प्राप्त करें।
<div>
<input name="submitButton" type="submit" value="Register" />
</div>
<div>
<input name="cancelButton" type="submit" value="Cancel" />
</div>
नियंत्रक पक्ष पर:
public ActionResult Save(FormCollection form)
{
if (this.httpContext.Request.Form["cancelButton"] !=null)
{
// return to the action;
}
else if(this.httpContext.Request.Form["submitButton"] !=null)
{
// save the oprtation and retrun to the action;
}
}
कोर 2.2 रेजर पृष्ठों में यह वाक्य रचना काम करती है:
<button type="submit" name="Submit">Save</button>
<button type="submit" name="Cancel">Cancel</button>
public async Task<IActionResult> OnPostAsync()
{
if (!ModelState.IsValid)
return Page();
var sub = Request.Form["Submit"];
var can = Request.Form["Cancel"];
if (sub.Count > 0)
{
.......
string submit
बनाम लेखन पसंद करता हूं string submit = Request.Form["Submit"];
। रेजर पेज और / या MVC के सबसे बड़े लाभों में से एक है तरीकों की पठनीयता, अन्यथा यह PHP हो सकता है।
<input name="submit" type="submit" id="submit" value="Save" onclick="saveMethod" />
:?